I'm trying to send Javabean-like objects as parameters in call method from a SOAP::LITE Perl Client to a Java Apache SOAP Server. Could someone please show me...
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...
982
Duncan Cameron
dcameron@...
Nov 3, 2001 5:16 pm
Ivan I'm not sure that I understand what the example is meant to be doing, as both of classes A and B are on each server, so no autodispatching will occur. To...
983
Bryan Dumm
bryan@...
Nov 5, 2001 11:26 am
Howdy, I was over at http://www.ebxml.org/news/pr_20010308.htm reading about how ebXML was using SOAP. Reading through the licenses I noticed the same RAND...
What is the problem in this Debug message? Perl code: use SOAP::Lite; my $SoapObject = bless {s1 => 'String139;, s2 => 'String239;} => 'SoapObject39;; my $client =...
Hey Duncan, Thanks for replying. Pretty much the scenario is like this: I have a little cluster, it can be 1-6 machines. Each machine has different ...
Hi I'm using perl client and apache-soap server ( rpc ). I want to send files from client to server and from server to client. I couldn't find anything yet....
I have looked into keep alive, the problem is that underlying module. LWP::UserAgent doesn't support it. So in order to allow Keep-Alive or HTTPS proxy you'd...
Hi, Taras! Sorry if I'm slow in my replies. I'm on vacation and have sporadic access to my mail. It'll continue during this week also (I'll be at P2P...
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...
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'd suggest that your IIS isn't configured correctly. The returned error, "%1 is not a valid Win32 application", isn't from SOAP. Re the debian side, are you...
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...
Hi, Mark! ... That's the part of SOAP spec, but it's not mandatory: "The name of the return value accessor is not significant. Likewise, the name of the struct...
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...
Hi, Paul! Back to the question. I have the same problem and solution suggested does not work for me. I mean return value of SOAP::Lite->service( ......
Hi, Alexei! ... Sorry, I wasn't clear. You can access SOM object using call() method without parameters, like this: my $service = SOAP::Lite->service(...); my...
998
Michael Percy
mpercy@...
Nov 14, 2001 2:00 am
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...
Hi, Paul! I agree, my suggestion was not good enough. I have another one :) What I expect from web-service? To be transparent, to behave like usual ...
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...
Hi, Geoff! And how the response envelope looks like? ... According to the log file server sends something back. Could you show this response? The reason for...
First, congratulation on Geoff Ellis for sending message 1000 to this group :) The problem: I have a SOAP::Lite client sending xml documents to a SOAP::Lite...
1003
Rob Torop
robt@...
Nov 15, 2001 2:28 am
1. If $x is the result of a SOAP::Lite call, how can I print an XML representation of $x? I was hoping that SOAP::SOM would have an asString method 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,...
I'm also having a problem passing an array from a Perl client using SOAP::Lite to a java server implemented with Glue1.2. I made the changes suggested to the...
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...
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...