Hi everyone! I'm having a few teething problems getting my SOAP::Lite server to respond to a simple client I have written in PHP using NuSOAP. Does anyone have...
Hi I'm still having trouble with NuSOAP in case anyone has a solution to my previous posting? On another issue I am trying to create a client for the same...
In 0.60 and 0.65_3 there is a subroutine called use_prefix(true|false) which turns on|off default namespacing. In the full release of 0.65 I will probably...
... I'd probably prefer: use_default_ns( true | false | string ) Where if you could then feed in a string to be used rather than the automatic numbering of...
I'm a SOAP newbie struggling with creating a Perl Soap::Lite server which can do delegated authentication with Salesforce. Was wondering if someone could help...
Derek Winkler
dwinkler@...
Apr 1, 2005 9:16 pm
4534
I used the stubmaker.pl script to create stubs for a service I'm using. I need to set the namespace as below: ... <SOAP-ENV:Body> <CheckAndAuthorise...
Hi everyone! With regards the problem I previously posted how might I capture the incoming request as seen from the server? I have been analysing the input...
... #!/usr/bin/perl use foo; $foo = foo->new; $foo->use_prefix(0); $foo->someMethod(...); The package created by stubmaker is a subclass of SOAP::Lite - so you...
... Hello, I'm newbie to all this stuff, but I was having problems trying to always get the same autogenerated namespace on the <...Response> element, so I...
Your wish is my command.... =-D In 0.65_5, the following two subroutines will be introduced that I intend to replace uri() and use_prefix() with... ...
Thanks Byrne for replying to my last post! I've now added the following line to the SOAP::Server::handle method in order output the HTTP::Request object: print...
Hi folks I've read previous posts about this but they seem inconclusive. Has anyone got a working SMTP SOAP example, even a really simple one? I've also...
hi all - I'm struggling to create a WSDL for a service written with SOAP::Lite. I have written a service and a client but now other clients want to connect....
Hello, Should the response being set as a "xsi:type=xsd:string" affect how I access sub-items? If I remove that from the test script below I am able to get the...
Hi, Within my client I format the date and send it to the server. The date/time is formatted using SOAP::Utils::format_datetime and appears as follows: ...
HI Trying to interop with a NuSOAP server passing in an arraytype which is supposed to return an arraytype and despite constructing the soap request...
Hi, I'm generating and sending a SOAP envelope to the server, but when the client is executed I see that the XML elements in the generated SOAP envelope are...
No doubt another stupid question from yours truly ;) I have a SOAP::Transport::HTTP::CGI server and a simple SOAP::Lite client. I can send a SOAP::Header fine:...
I wanted to announce to everyone that www.soaplite.com has been given a new look and feel. Paul and I moved it to TypePad to hopefully make it easier to...
Hi folks, Here's a question I also posted on perlmonks: I'm writing a soap server using Apache::SOAP (part of SOAP::Lite). The SOAP server provides an...
Hello, I understand that this question have benn asked already couple of times ago, but I am trying to get clear answer anyway. Does SOAP::Lite support...
Thanks - but I still can't access the header! If I perform the following call: my $test = $soap->soapimport( SOAP::Data->name(client_id => 'client_id') ...
Hello everyone: I'm writing some services using Soap::Lite, and I need to be able to have named arguments to my subroutines. In regular perl syntax I's do...
... See the thread on Accessing the SOAP::Header. Basically you need to have your server classes derived from SOAP::Server::Parameters. This will provide the...