Hi, I need to create a SOAP::Lite client in perl and I don't have specifications for doing this in this language. I do have an example in C# though. Can you...
Octavian Rasnita
orasnita@...
Jul 3, 2006 1:12 pm
5468
From: "theorem21" <bryant.eadon@...> ... specifications for doing this in this language. ... code you can that can help me as a sample of making the...
Octavian Rasnita
orasnita@...
Jul 3, 2006 3:54 pm
5469
Hi, Here is a small sample code. This code was originally in Java and I had to rewrite it in perl. It takes a while to actually understand how SOAP works but...
Hi, Thank you for that code. I have tried the following: use SOAP::Lite; use SOAP::Lite +trace => [qw(debug)]; my $url = "http://..."; my $ENDPOINT = $url; my...
Octavian Rasnita
orasnita@...
Jul 4, 2006 5:38 am
5471
... www.bvb.ro/Level2#Level2 Part before # is uri and part after is a called method. SOAPAction http header can be set by an on_action method: ...
rahed
rahed@...
Jul 4, 2006 10:11 am
5472
Thank you. I have managed to send the correct header but the XML body is not correct. I have also read that I need to make some changes in order to make the ...
Octavian Rasnita
orasnita@...
Jul 4, 2006 10:18 am
5473
Hello all. I'm having a similar problem to [id://548716|this]. Unfortunately, I couldn't figure out the solution from the thread. I'm calling a Web Service...
hi, I am trying to get information from a database using SOAP::Lite. However I keep getting the following error: Can't locate object method "new" via package...
I have released a new version of SOAP::Lite. It is available on sourceforge now, or on CPAN in a couple of hours. The new version is 0.68 and includes a number...
Hi, i'm wondering if it's possible, and if yes how, to export variables from the dispatching script, to the dispatched service, without go trought ENV. ...
... The stub you have marked "'DEMO' script" is not a separate script, it is a package. It is more or less "use"ed (i.e. "use Demo;") by the dispatcher and...
Hi... This is significantly better than 0.67. However, I'm getting an error vs. the WSDL I need to read: Type 'ArrayOfstring' can't be found in a schema class...
Yes. Apparently I forgot to check one file in. Damn it. So what worked for me in development didn't get fully released. Please stand-by. An update is...
Hello everyone: I'm running an apache 1.3.* server with mod_ssl, mod_perl & SOAP::Lite, and I seem to be hitting a wall in terms of performance. Granted, I'm...
... It might be worth testing this. If you can setup a function that just returns it's arguments, you can firmly establish if this is a serializer issue or a...
Jay, thank you! I was unaware that one could choose which xml parser package to use. I have the expat based XML::Parser installed already, how do I instruct ...
... I'm fairly sure that if SOAP::Lite can find XML::Parser, it will automatically use it. XML::Parser::Lite is only used as a fall-back. Someone with a...
Hi, I have been working on a product which provides access to its APIs using web services. The way to invoke any API is to start telnet session and pasting the...
MAIN DIFFERANCE BETWEEN SQLSERVER AND ORACLE Oracle is like apple and Sql Server is like Orange. For a Poor man Orange is better and for a rich man apple is...
I'm trying to call a WebService written in Java from a perl client using SOAP::Lite. I used the wscompile tool to create my WSDL and mapping.xml files in the...
Hi, i'm trying to write a perl program using SOAP with a remote system. The remote side already has a WDSL file, and i'm wondering if anyone has an example how...
Hi Justin, Funny, thats exactly what i'm wrestling with currently. I found that Oxygen (commercial, Windows/Linux/Mac too i think) has a WSDL debugging tool,...
Hi, I want to use an .xsd file to validate a request that I get over SOAP. How can I do that? ... my $parser = XML::LibXML->new(); sub Thingie { # Get the hash...
hello, is there a possibility to deal with mustUnderstand attributes other than toggling the $SOAP::Constants::DO_NOT_CHECK_MUSTUNDERSTAND flag? (i read the...
It's possible I'm just gravely misunderstanding something, but I've recently started to look into SOAP::Lite for the purpose of pulling information from the...
Hey all, I am fairly new to SOAP so please forgive me if I am missing something obviously. I can connect to a service running on Apache AXIS fine. What I have...