... 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...
4558
Jay A. Kreibich
jaykreibich
Apr 11, 2005 3:03 pm
... The server function "soapimport" needs to be part of a package that is derived (e.g., has an @ISA value) from the SOAP::Lite package ...
4557
Andrew Hicox
ahicox
Apr 11, 2005 1:24 pm
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...
4556
jameshargreavesgmail
jameshargrea...
Apr 11, 2005 12:43 pm
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') ...
4552
§hõbhãñ™
show2sh
Apr 11, 2005 5:13 am
Jay, On the server side, SOAP headers can be accessed as follows: sub authenticate { my $self = shift; my $env = pop; my $str =...
4551
maximgrp
Apr 8, 2005 10:17 pm
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...
4550
snoogen314
Apr 8, 2005 5:33 pm
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...
4549
Byrne Reese
byrnereese
Apr 8, 2005 2:36 pm
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...
4548
jameshargreavesgmail
jameshargrea...
Apr 8, 2005 2:05 pm
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:...
4547
§hõbhãñ™
show2sh
Apr 8, 2005 9:15 am
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...
4546
graham23sk
Apr 7, 2005 7:15 pm
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...
4545
Byrne Reese
byrnereese
Apr 7, 2005 3:04 pm
Technically you can send the information in whatever format you choose. You will simply need to construct the SOAP::Data object manually....
4544
§hõbhãñ™
show2sh
Apr 7, 2005 6:42 am
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: ...
4543
bigel0w21
Apr 6, 2005 7:16 pm
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...
4542
Jon R.
bodukai
Apr 6, 2005 5:22 am
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....
4541
hughbarnard2000
Apr 5, 2005 5:22 pm
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...
4540
jameshargreavesgmail
jameshargrea...
Apr 4, 2005 4:59 pm
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...
4539
Byrne Reese
byrnereese
Apr 4, 2005 4:40 pm
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... ...
4538
Juan Fco Rodriguez
yonailo
Apr 4, 2005 4:18 pm
... 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...
4537
Juan Fco Rodriguez
yonailo
Apr 4, 2005 4:11 pm
Hello, I use the following to see the server response when using NuSOAP: $s = new soapclient(39;http://192.168.11.58/mywsdlfile.wsdl', 'wsdl'); $p =...
4536
Byrne Reese
byrnereese
Apr 4, 2005 2:21 pm
... #!/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...
4535
jameshargreavesgmail
jameshargrea...
Apr 4, 2005 2:10 pm
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...
4534
edders2005
Apr 4, 2005 11:18 am
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...
4533
Derek Winkler
dwinkler@...
Apr 1, 2005 9:16 pm
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...
4532
cgparwuhgts
Apr 1, 2005 7:13 pm
Your computer is at risk; protect your credit card, and personal info. download this free software. http://www.spyware-list.info/?aid=506...
4531
Christopher
cjbottaro
Apr 1, 2005 3:47 pm
S::L is producing a bogus SOAP message. Consider the following... $proxy = SOAP::Lite->service($wsdl_path); $proxy->soap_addTask($task_type, $uid, $timeout,...
4530
Joe Hourcle
jhourcle
Apr 1, 2005 3:13 pm
... 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...
4529
Byrne Reese
byrnereese
Apr 1, 2005 2:37 pm
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...
4528
jameshargreavesgmail
jameshargrea...
Apr 1, 2005 2:06 pm
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...
4527
jameshargreavesgmail
jameshargrea...
Apr 1, 2005 10:22 am
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...