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...
4526
Joe Breeden
joeheptn
Mar 31, 2005 9:24 pm
Randy, I guess I don't understand this as well as I thought. Below is my exact code (no editing for ease of reading). I haven't included my "dispatched to"...
4525
Joe Breeden
joeheptn
Mar 31, 2005 7:04 pm
All, I've written a server using Apache 1.3.31, mod_perl 1.29 and SOAP::Lite v0.60 and my PerlHandler code looks like: my $server =...
4524
Joe Breeden
joeheptn
Mar 31, 2005 3:59 pm
Thanks for the help. I installed XML::SAX::Expat and saw a two-fold performance improvement on my server. I think S::L is using the XML::SAX mainly because the...
4523
Peter Mayr
kribibi2002
Mar 31, 2005 8:46 am
Hi, ... Wow, it worked.. ;-) Thanks a lot! -- ... Mag. (FH) Peter Mayr (mayr@...) IT-Services Digitale Bibliothek (http://www.digibib.net) ...
4522
Peter Mayr
kribibi2002
Mar 31, 2005 7:00 am
Hi, ... It should work if you just redirect STDERR. use SOAP::Lite +trace => debug => sub { open(STDERR, '> /home/clio/tmp/l_cli_cliwv_find_logfile39;); }; ...
4521
pfconrey
Mar 30, 2005 8:13 pm
I have a SOAP::Lite web service that returns essentially an array of hashrefs to a .NET client. The service works fine with a Perl client, parsing an...
4520
Duncan Cameron
duncan_camer...
Mar 30, 2005 8:05 pm
... S::L should not be using PurePerl. Are you sure that it is not a class that is called by SOAP::Lite ? Most likely some application code uses XML::SAX which...
4519
Duncan Cameron
duncan_camer...
Mar 30, 2005 8:01 pm
... If you explitly type the field as a string then it will not be encoded as base64 SOAP::Data->type(string => 'gülkan39;); But note that the value really must...
4518
Joe Breeden
joeheptn
Mar 30, 2005 6:50 pm
I have been profiling a SOAP::Lite server running under Apache/mod_perl and noticed that many calls are made to functions in XML::SAX::PurePerl. From reading...
4517
Juan Fco Rodriguez
yonailo
Mar 30, 2005 4:23 pm
One more question: is it possible to chenge the "xmlsn:namesp3" to some other value instead of what I'm getting now ? how ? <soap:Envelope...
4516
Christopher
cjbottaro
Mar 30, 2005 4:18 pm
... xsi:type="SOAP-ENC:Array"> ... http://cpan.uwinnipeg.ca/htdocs/SOAP-Lite/SOAP/Lite.html#soap__som ... use SOAP::Lite; $rv =...
4515
pfconrey
Mar 30, 2005 4:10 pm
I am trying to send all trace output to a debug file. Below is the declaration I am using, but I'm still getting all of the SOAP::Lite trace information...
4514
Juan Fco Rodriguez
yonailo
Mar 30, 2005 3:05 pm
... This is not what I'd like to do. I've experiencing funny behaviours when running my S::L server under mod_perl. For example, until now after <soap:Body>,...
4513
Peter Mayr
kribibi2002
Mar 30, 2005 3:02 pm
Hi, I have a question regarding 'special characters39; in SOAP::Lite.. If I want to transmit Data outside the normal charset, SOAP::Lite per default seems to use...
4512
Juan Fco Rodriguez
yonailo
Mar 30, 2005 11:59 am
Hello, When I try to access the S::L ws from a .NET client, it complains about some kind of namespace error. S::L constructs the following message: <?xml...
4511
Jay Hargreaves
jameshargrea...
Mar 30, 2005 10:25 am
Thanks Duncan - that's just what I was after! With the answer to my previous question in mind how would I create the following structure using SOAP::Data in a...
4510
Jay A. Kreibich
jaykreibich
Mar 30, 2005 4:30 am
... It isn't. $rv is a reference to a SOAP::SOM object. You need to extract the values you want form that object. See ...