Group, I am really enjoying working with SOAP::Lite - but I have run into a problem when building my own Server. I have been successful in building clients for...
3371
Joseph Norris
sirronj777
Feb 18, 2004 8:59 pm
Group, I am really enjoying working with SOAP::Lite - but I have run into a problem when building my own Server. I have been successful in building clients for...
3372
ask4uk
Feb 19, 2004 12:15 am
Hello, I am trying to produce XML output of the form: <attributes> <RadiusAttribute> <type>string</type> <value>string</value> </RadiusAttribute> ...
3373
jpeyser
Feb 19, 2004 3:05 pm
Try for (1..2) { push(@args,( SOAP::Data->name("RadiusAttribute"=> \SOAP::Data->value( SOAP::Data->name("type"=>$name), SOAP::Data->name("value"=>$value) ))));...
3374
kvclarkusa
Feb 19, 2004 3:29 pm
Hello, I am connecting a Perl client to a .NET web service. I have succesfully tested calling methods and passing simple parameters such as strings, integers,...
3375
Joseph Norris
sirronj777
Feb 19, 2004 3:32 pm
Group, I am a little confused about the proxy side of SOAP::Lite. What is its purpose and how do I determine on a system where soap is running if proxy for...
3376
Duncan Cameron
duncan_camer...
Feb 19, 2004 7:33 pm
... In SOAP::Lite the term proxy is used simply for the server to which you want to connect. It is not a 'http proxy' as you would understand that. Regards ...
3377
Byrne Reese
byrnereese
Feb 24, 2004 4:10 pm
Could it be as simple as: -- CUT HERE -- foreach my $m ( $som->dataof('//Messages')) { print $m->{description}; } -- CUT HERE -- It is a valid XPath statement...
3378
NOVAK Judit
njudy79
Feb 24, 2004 4:37 pm
Dear all, I want to use Digest authentication method accessing the server class. The solutions I found mentioned together with Basic authentication (overriding...
3379
Jenni Bennett
ldapgirl42
Feb 25, 2004 2:11 am
Byrne, ... It was as simple as substituting double quotes for single... i.e. foreach my $m ( ...
3380
drfousth
Feb 25, 2004 3:19 pm
Hello, I can't find SOAP::Lite with the CPAN shell anymore since a few days. What happened? Sven...
3381
Byrne Reese
byrnereese
Feb 25, 2004 6:32 pm
I am actively working to resolve this with CPAN. Since Paul transitioned ownership/management of SOAP::Lite to me (Paul is still involved of course) there has...
3382
epfreed1
Feb 25, 2004 7:38 pm
I am having problems either sending or receiving cookies with SOAP::Lite, but I don't know where the problem is. I can create cookies (I checked by saving them...
3383
Alasdair Allan
dr_aallan
Feb 25, 2004 7:54 pm
... Have a look at my example cookie code here http://www.astro.ex.ac.uk/people/aa/software/cookie_daemon.tar.gz Cheers, Al. -- Dr. A. Allan, School of...
3384
Eric Freed
epfreed1
Feb 25, 2004 8:24 pm
I take it back. Having your working code helped me to see what was not happening, and where it wasn't. I was right, my client was not sending cookies, and it...
3385
Alasdair Allan
dr_aallan
Feb 25, 2004 8:29 pm
... Yes, I've come across this problem as well. I did spend some time trying to figure out why this was the case but I eventually gave it up as a bad job. I...
3386
Byrne Reese
byrnereese
Feb 25, 2004 9:23 pm
This has for so many people been a point of confusion about cookies... and not just for SOAP::Lite, but for web developers in general. According to Netscape's...
3387
c002928
Feb 26, 2004 4:39 am
The web service I am using requires messages to have an http header that looks like this: Accept-Encoding: gzip, deflate or like this: Accept-Encoding: gzip I...
3388
Duncan Cameron
duncan_camer...
Feb 26, 2004 1:35 pm
... From: "c002928" <scoldan@...> To: <soaplite@yahoogroups.com> Sent: Thursday, February 26, 2004 4:39 AM Subject: [soaplite] accept-encoding gzip ...
3389
Zazie Queneau
zazie_6969
Feb 27, 2004 5:45 pm
Hi I'm just curious, but while generating Perl code from a WSDL file, I had the following problem: the SOAP call from the generated class looks like: ...
3390
Raj***
click35mm
Feb 27, 2004 11:15 pm
sacmail.com...
3391
Maurice McCabe
orb_soft
Feb 28, 2004 12:56 am
Has anyone tried to return a .NET Dataset to a .NET client from a SOAPLite server? I want to be able to pass a list of queries from a .NET client and receive a...
3392
jakeryder3344
Feb 29, 2004 6:25 am
I'm integrating a C# client with a perl cgi soap server. Using perl as the client, I am able to access the web service via WSDL with no problem. Using, C#, ...
3393
techrg99
Feb 29, 2004 3:46 pm
Using SOAP::Lite from a Perl/Tk client calling a mod_soap/Apache server as a middle tier to access a database - the client "locks" when the call is made. I...
3394
Marcus
teasysmail
Feb 29, 2004 5:40 pm
Hi all, I'm looking for a way to access the header information on server side before actualy executing the request. My header includes session information that...
3395
Maurice McCabe
orb_soft
Mar 3, 2004 5:24 am
I got this working. I created a module I am calling DataSet.pm which makes this possible. DataSet.pm contains the template for constucting the XML for a .NET...
3396
Chetan Lalye
clalye
Mar 3, 2004 6:18 am
Hi, Is there is a distributable version of wsdl2perl ? I tried downloading from CVS and got errors that it could not find 'Template.pm'. I have the beta...
3397
Paul Harman
seancortan
Mar 3, 2004 5:38 pm
I'm writing a SOAP::Lite client trying to process the following response "signature". Hopefully the names/types show what is going on: <SOAP-ENV:Body> ...
3398
jozefn777
Mar 3, 2004 10:24 pm
I keep getting the error in the subject as a warning. I do not understand why. I am returning other hashes within hashes in the record return. '_cgi' => {...
3399
lucprieur
Mar 4, 2004 1:47 am
Hi All, I am trying to do a very simple thing... please help me, I really don't know how to move forward (I have read all SOAP Lite docs, guides, and...