RE: How to call a perl code in Windows from Unix

2005-02-28 Thread Maxmelbin Neson (RBIN/EDM3)
Title: Message   net::telnet   Hi , Here is the situation … I need to run Script A in Unix , It will generate few parameters that should be passed to Script B . The Script A will call Script B .. Script B will be on a Windows Server . Its input parameter is the data pas

RE: How to call a perl code in Windows from Unix

2005-02-28 Thread John Serink
Title: Message net::telnet -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Maxmelbin Neson (RBIN/EDM3)Sent: Monday, February 28, 2005 4:47 PMTo: [EMAIL PROTECTED]; perl-win32-users@listserv.ActiveState.comSubject: How to call a per

Re: How to call a perl code in Windows from Unix

2005-02-28 Thread Sisyphus
Maxmelbin Neson (RBIN/EDM3) wrote: Hi , Here is the situation ... I need to run Script A in Unix , It will generate few parameters that should be passed to Script B . The Script A will call Script B .. Script B will be on a Windows Server . Its input parameter is the data passed by Script A ... IT

Re: How to call a perl code in Windows from Unix

2005-02-28 Thread Kevin Carothers
On Mon, 28 Feb 2005 10:23:24 +0100, Bruno Georges <[EMAIL PROTECTED]> wrote: > Hi > > One possible solution is to wrap the functions in Script B [on windows] > with SOAP and expose it has a service via apache. [---] > Bruno Georges [---] > > I need to run Script A in Unix , It will generate

Re: How to call a perl code in Windows from Unix

2005-02-28 Thread Chris Wagner
You can have the Windows script B be an ordinary cgi script which can be called as a URL from script A on unix. A calls B with a standard GET URL. It returns output by generated text. Just install Apache for Windows. -- REMEMBER THE WORLD TRADE CENTER ---=< WTC 911 >=-- "...ne cede

Re: How to call a perl code in Windows from Unix

2005-02-28 Thread Bruno Georges
Hi One possible solution is to wrap the functions in Script B [on windows] with SOAP and expose it has a service via apache. You can then access them from Script A has a SOAP client. Also SOAP supports some level of error handling in its protocol. " the SOAP message can be parsed like any other XM