Telnet / rexec in Visual Integration Studio

  • Thread starter Thread starter JoeBrain00
  • Start date Start date
J

JoeBrain00

Sorry if this is in the wrong forum, I couldn't find another place for
it...

Does anyone use Visual Integration Studio? (
http://www.crossrhoades.com )

I am attempting to load some Oracle data using SQL*Loader but my
Oracle server is on a UNIX system, so I'd like to telnet or rexec the
sqlloader command to unix and wait for it to complete in my data
integration process.

Is there a way to run rexec from Visual Basic .NET?

Thanks,
Joe
 
Hi Joe,

Probably you get the fastest answer for this if you put it also in the
active newsgroup

microsoft.public.dotnet.framework.adonet.

Cor
 
* (e-mail address removed) (JoeBrain00) scripsit:
Sorry if this is in the wrong forum, I couldn't find another place for
it...

Does anyone use Visual Integration Studio? (
http://www.crossrhoades.com )

I am attempting to load some Oracle data using SQL*Loader but my
Oracle server is on a UNIX system, so I'd like to telnet or rexec the
sqlloader command to unix and wait for it to complete in my data
integration process.

Is there a way to run rexec from Visual Basic .NET?

What's "rexec"? A command? A command-line tool?
 
Hi Herfried,

Have a look on the message from Joe nukem etc. to a message from me in this
newsgroup about Close vs. Dispose,

Have fun

Cor
 
rexec is a command line tool that is used in conjunction with server
based systems to run a command on another server.

For instance; I am running on a Windows XP PC and I want to run a
shell script on my unix server - I would call rexec (remote execute)
to accomplish this. However, I was wondering if anyone had, or knew
where to find a class in .NET that does remote commands...
 
* (e-mail address removed) (JoeBrain00) scripsit:
rexec is a command line tool that is used in conjunction with server
based systems to run a command on another server.

For instance; I am running on a Windows XP PC and I want to run a
shell script on my unix server - I would call rexec (remote execute)
to accomplish this. However, I was wondering if anyone had, or knew
where to find a class in .NET that does remote commands...

I never worked with "remote commands" on/with Unix servers, but you can
use 'System.Diagnostics.Process.Start' to start the tool.
 
Back
Top