Hi, When using SOAP::Lite 0.52, I find that my WSDL files can no longer be used (it worked fine with SOAP::Lite 0.50). The error I get with 0.52 is: ...
Hi everyone! I am using SOAP Lite for Perl on Linux and have written a small server which is dispatching a Package named USER.pm.This package has many "use" &...
At 06:55 PM 11/28/2001 -0800, you wrote: hello all I have a soap server which dispatches a class called SendReceive. i get this error when i try to access the...
Hi, I'm using SOAP::Lite to access BEA Weglogic WSDL services (Java beans). I would like to call from Perl a remote method on the Java server that receives a...
hello. I have created a soap server that serves out a class. how do i instantiate a class object on the client end and have access to the object methods. for...
Hi, I have a really basic question -- please forgive me if it's been already been answered. I wrote a simple web service to display a fortune, using Soap::Lite...
Is there a way to get the uuid out of the following response: <SOAP-ENV:Envelope xmlns:SOAP-ENV=...> <SOAP-ENV:Body> <ns1:getDeviceProfileResponse xmlns ...>...
Hi, I've installed SOAP::Lite and am trying to use the jabber transport. When I try to run the example 'jabserver.pl' I get "Failed to load any schema for...
Hi all, When passing an XML payload as a string using normal SOAP::Lite client calls, the XML gets encoded so that it looks like content. For example, '<' gets...
Hi, Leon! I CC-ed SOAP::Lite39;s list because it might be interesting for others. ... Thanks ;) ... There are two main ways of writing deserializer. You can put...
Hi, I have a perl client and a Java server using Apach Soap. When I pass a number to the Java server and it is expecting a "long", but soaplite packages it as...
HI, I'm trying to get the server to send a file as an attachment in the response. I'm really not sure how to go about doing it. I tried looking at MIME::Lite...
Hi, I know there are lots of other questions on the thread but I think this would be of benefit to many other SOAP::Lite developers. If there's a reference or...
Consider the following code: %maps = ("123", "3"); $map = SOAP::Data->type("map") ->value(92;%maps); Now, this will serialize the key "123" as an integer,...
A very short question: which is the equivalent to $soap -> call ( new => 100 ) -> result in VB ? I recognise I still dont understand either the perl...
Hi, When inside a dispatched handler (using SOAP Daemon), I am unable to fork a new process to do work without it blocking forever. Even if I localize ...
Hi, I'm trying to implement a global ticket-based authentication system where the ticket info is passed in a //authInfo SOAP field or something similar between...
Has anyone used http://www.xmethods.net/detail.html?id=95 and the SOAP LIte VB i/f? I would like to see the Create Object call. I can successfully use example...
Paul: I'm doing some development for a simple SOAP client using your excellent module, but I've run into one issue: In order for my client to talk to a WSDL...
Greetings, First of all my thanks for helping me with the WSDL file a couple of days ago. I was able to correct the mistakes and get the service operational. ...
people, I'm trying to a javascript soap client to access a cgi SOAP server running on linux and display the results using DHTML. I've tried to send a soap...
Paul and soapliters, I have been reading up on SOAP and Distributed Object Architectures, and have slowly been understanding more and more what SOAP really is...
Using a SOAP::Lite 0.51 CGI server, I tried using the as_Foobar syntax ie #!/usr/bin/perl use SOAP::Transport::HTTP; BEGIN { sub SOAP::Deserializer::as_Foobar...
Can anyone clarify something for me: in all examples I have seen, a SOAP request contains, of course, the method name (eg GetMoney). The SOAP response...
People, sorry to trouble you with this, but as a newbie, both to methods/classes/soap etc, I need to ask to move on. I read all the docs off www.soaplite.com...
I'm using this Perl client to call a Java Apache SOAP server: use SOAP::Lite; my $SoapObject2 = bless {s1 => "String1", s2 => 'String239;} => 'soapobject239;; my...
Hiya there, I'm writing some software that uses a CGI based SOAP server, and am concerned that with large numbers of method calls, the time involved in...