The trace does not work because there are no SOAP::Trace::debug calls in the server package. But, we can do a little hack. Redefine the SOAP::Server::handle...
... Please see these messages on the subject: http://groups.yahoo.com/group/soaplite/message/2044 http://groups.yahoo.com/group/soaplite/message/2054 Actually,...
Seems to go the standard output. If you want to redirect the output then use SOAP::Trace->import(debug => sub {...}); and define your own subroutine. Jonathan ...
In my server, I put: use SOAP::Lite+trace=>'debug'; open STDERR, '>', "error.log"; and the server dumps a debug trace into error.log. trace=>39;all' dumps...
I've been trying to use the dispatch_to static deployment method for a CGI server. Here is my server code: use SOAP::Transport::HTTP; use Mr::Module; ...
Hello & thanks for your replies. A combination of them did the trick for me; a quick summary for future reference: I added two lines to SOAP/Transport/HTTP.pm,...
Jonathan, using your approach of creating elements via SOAP::Data calls I still don't see a way to avoid having xsi data types within the XML when you're...
... Thanks for figuring that out, that is incredibly helpful. Here's a performance improvement on it, instead of sending the entire request and response into ...
Has anybody else noticed that the docs that say you can do this: use SOAP::Lite +trace => method, fault => \&log_methods_and_faults; are wrong? It actually...
And/or there's a bug. :) I'm trying to access the results of SOAP call by name, not just as an array. The documentation to paramsout includes the following...
2654
Duncan Cameron
dcameron@...
May 24, 2003 4:01 pm
... Hash: SHA1 ... Yes! See http://groups.yahoo.com/group/soaplite/message/2526 and http://groups.yahoo.com/group/soaplite/message/1741 It's always worth...
... It's always worth updating flawed docmentation as well....
2656
Duncan Cameron
dcameron@...
May 24, 2003 4:16 pm
... Absolutely. The problem seems to be that Paul K hasn't the time these days. Regards Duncan...
2657
Duncan Cameron
dcameron@...
May 24, 2003 4:18 pm
... I think that you are misinterpreting the docs. As you point out, it is the value of the parameter not its element name that is returned in both cases....
Hello Group, what I'm trying to do: Receive a SOAP call on my script. Then I want to apply a transformation (XSLT) on the SOAP body and feed the resulting XML...
All, I was wondering how many people on the SOAP::Lite list are going to be attending OSCON'03 (http://conferences.oreillynet.com/os2003/)? I was thinking that...
For those who are able to generate WSDL files outside of SOAP::Lite, but need the SOAP server to return WSDL file, there is the following fix (from the example...
2661
Tim Jenness
t.jenness@...
May 27, 2003 8:56 pm
... Sounds like a great idea to me. -- Tim Jenness JAC software http://www.jach.hawaii.edu/~timj...
For those who are able to generate WSDL files outside of SOAP::Lite, but need the SOAP server to return WSDL file, there is the following fix (from the example...
Hello, With JWSDP I wrote a function that echoes a string array. I ran ... echoStringarray => { endpoint => 'http://disco:8080/wsTest/coffee39;, soapaction =>...
Hello, I know that quite a few people have been discussing the issue of passing hashes from SOAP::Lite, but I have not been able to find an answer to my...
Alasdair, I plan to be there on Wednesday and Thursday (9-10). Sounds like a great idea to me. Best wishes, Paul. ... __________________________________ Do you...
All, ... Right, shall I organise a BoF then? Since it would make sense to have Paul there, it either has to be Wednesday or Thursday. Are there any preferences...
... Absolutely. Thanks! ... I personally prefer Wednesday, but it's not a strong preference. ... Yes, but it will be short ;) ... Definitely we can discuss...
I'll be there, as well. From a "historical" perspective, there is usually some sort of free-food and mixer on Wednesday evenings. It usually starts to wind...
Hello, I'm having problems passing an array of integer to a function... Looking at the service logs, an empty array is being received on the other end. Which...
Hi all, I am a beginner in SOAP programming and need your help in running the first example in the book "Programming Web Services With SOAP". The Hello.pm is...
My client code is: use SOAP::Lite +trace => 'debug39;; my $soap = SOAP::Lite ->service('http://hdwebqa/arsys/WSDL/corphdqa/UserLoginName39;); my @som =...
... Just as you used the SOAP::Data class to create the data element you pass, use the SOAP::Header class to create the elements that should be headers in the ...