[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Connecting to a Windows share from a Windows computer

Kory Woods

7/13/2008 8:11:00 PM

We have two separate servers running Windows Server 2003, and what we
need to do is simply copy files from a share on one of the computers to
the other, the computers share a domain. I assume there is some simple
library that I can't find and was hoping someone could share that with
me. If necessary, I will be able to provide more information or let you
know if it's working tonight around 1 AM CDT.

Thanks for reading, and I'm sorry if I choose the wrong topic in which
to post this.
--
Posted via http://www.ruby-....

7 Answers

Axel Etzold

7/13/2008 10:56:00 PM

0


-------- Original-Nachricht --------
> Datum: Mon, 14 Jul 2008 05:10:41 +0900
> Von: Kory Woods <kory@virlo.net>
> An: ruby-talk@ruby-lang.org
> Betreff: Connecting to a Windows share from a Windows computer

> We have two separate servers running Windows Server 2003, and what we
> need to do is simply copy files from a share on one of the computers to
> the other, the computers share a domain. I assume there is some simple
> library that I can't find and was hoping someone could share that with
> me. If necessary, I will be able to provide more information or let you
> know if it's working tonight around 1 AM CDT.
>
> Thanks for reading, and I'm sorry if I choose the wrong topic in which
> to post this.
> --
> Posted via http://www.ruby-....

Dear Kory,

just guessing here:

maybe win32-service from

http://win32utils.ruby... can do what you want.

Best regards,

Axel


--
Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/s...

Kory Woods

7/14/2008 1:05:00 AM

0

Axel Etzold wrote:
> -------- Original-Nachricht --------
>> Datum: Mon, 14 Jul 2008 05:10:41 +0900
>> Von: Kory Woods <kory@virlo.net>
>> An: ruby-talk@ruby-lang.org
>> Betreff: Connecting to a Windows share from a Windows computer
>
>> Posted via http://www.ruby-....
> Dear Kory,
>
> just guessing here:
>
> maybe win32-service from
>
> http://win32utils.ruby... can do what you want.
>
> Best regards,
>
> Axel

Thanks Axel, I did check that out, but couldn't find anything that could
do what I wanted. Per your suggestion, I will look into it more.
Thanks for the reply!
--
Posted via http://www.ruby-....

Björn Andersson

7/14/2008 5:15:00 AM

0

Hi!

Have you tried to just copy it using the normal UNC path?
\\server1\mountpoint\otherfile -> \\server2\mountpoint\yourfile.txt
If you need to authenticate to the servers use the "net use" command
and mount the network shares as local drives and unmount them when the
copy is done.

Not really a ruby specific answer but maybe something. :)

/Bj=F6rn

On Sun, Jul 13, 2008 at 10:10 PM, Kory Woods <kory@virlo.net> wrote:
> We have two separate servers running Windows Server 2003, and what we
> need to do is simply copy files from a share on one of the computers to
> the other, the computers share a domain. I assume there is some simple
> library that I can't find and was hoping someone could share that with
> me. If necessary, I will be able to provide more information or let you
> know if it's working tonight around 1 AM CDT.
>
> Thanks for reading, and I'm sorry if I choose the wrong topic in which
> to post this.
> --
> Posted via http://www.ruby-....
>
>



--=20
"Beauty is more important in computing than anywhere else in technology
because software is so complicated. Beauty is the ultimate defense
against complexity."
-- David Gelernter, Machine Beauty:
Elegance and the Heart of Technology

Kory Woods

7/14/2008 5:31:00 AM

0

Björn Andersson wrote:
> Hi!
>
> Have you tried to just copy it using the normal UNC path?
> \\server1\mountpoint\otherfile -> \\server2\mountpoint\yourfile.txt
> If you need to authenticate to the servers use the "net use" command
> and mount the network shares as local drives and unmount them when the
> copy is done.
>
> Not really a ruby specific answer but maybe something. :)
>
> /Bj�rn

Thanks very much for the reply, I'll give the first part a go, but have
a question: can it work with directories (\\server1\mountpoint\* ->
\\server2\infodate\ as well as files, and what is the method call for
which I'd be looking?

I'll definitely try/look into this deeper, though. Thanks a lot Björn!
--
Posted via http://www.ruby-....

Kory Woods

7/14/2008 9:38:00 AM

0

Thank you greatly Björn, your advice is priceless, even if it's not
exactly ruby :), thanks for getting me back on track and making me do a
little research on my own :D.

Also, thank you Axel for your response, as it would have come in a great
deal of use just a few days ago.
--
Posted via http://www.ruby-....

Bill Walton

7/14/2008 12:26:00 PM

0

Hi Kory,

Kory Woods wrote:

> We have two separate servers running Windows Server
> 2003, and what we need to do is simply copy files from
> a share on one of the computers to the other, the computers
> share a domain.

Assuming you're talking about doing this in the context of Rails, or at
least Ruby, you might take a look at Ruby's open-uri library.

HTH,
Bill


Kory Woods

7/14/2008 4:25:00 PM

0

Thanks everyone for all your help, I managed to resolve it using mostly
Björn's suggestions using essentially a few MSDOS commands within a ruby
method. This is a nice community you guys have going here, hope I can
be the helper someday, and be sure to stop by once in a while. If
anyone is interested, I'll post what I came up with tomorrow morning,
CDT. Thanks again everyone!
--
Posted via http://www.ruby-....