RE: Webservice Call using Win32::OLE

2006-12-14 Thread Briggs, Larry
: Re: Webservice Call using Win32::OLE I can't give you a direct answer, but maybe you'd like to try SOAP::Lite instead. It's cross-platform (may not be relavant), and it has worked on both Java and C# web services. Briggs, Larry wrote: Hi I am trying to convert the following VB script webservice

RE: Webservice Call using Win32::OLE

2006-12-14 Thread Briggs, Larry
using Win32::OLE for: Call oServXMLHTTP.open(POST, decryptWebServiceURL, False) try: $DOM-open(POST,$decryptWebServiceUrl, 0); # 0 = false, 1 = true hope I have been some help! cheers, -Jer A Quoting Briggs, Larry [EMAIL PROTECTED]: Hi I am trying to convert the following VB script

Webservice Call using Win32::OLE

2006-12-13 Thread Briggs, Larry
Hi I am trying to convert the following VB script webservice call into perl I am trying to use Win32::OLE. Can this be done and if it can how would I go about doing this. I have provided the Perl code that I have tried to write so far. Any help that you can provide to point me in the right

Re: Webservice Call using Win32::OLE

2006-12-13 Thread mailware
for: Call oServXMLHTTP.open(POST, decryptWebServiceURL, False) try: $DOM-open(POST,$decryptWebServiceUrl, 0); # 0 = false, 1 = true hope I have been some help! cheers, -Jer A Quoting Briggs, Larry [EMAIL PROTECTED]: Hi I am trying to convert the following VB script webservice call into

Re: Webservice Call using Win32::OLE

2006-12-13 Thread Foo JH
I can't give you a direct answer, but maybe you'd like to try SOAP::Lite instead. It's cross-platform (may not be relavant), and it has worked on both Java and C# web services. Briggs, Larry wrote: Hi I am trying to convert the following VB script webservice call into perl I am trying to use