Anyone else having issues with running a script with SOAP::Lite and IO::Socket::SSL modules simultaeously? My script needs a seperate SSL socket (non-SOAP) to...
4314
chuckcott
Jan 11, 2005 8:28 pm
Hi All, I'm trying to post a text document that looks like this: abc def ghi but what I'm getting is abcdefghi I can't figure out what I need to do to ensure...
4315
jmzorko@...
jmzorko
Jan 11, 2005 10:23 pm
Hello, all ... Am I seeing things, or is SOAP::Lite limited to only dispatching to modules that actually live in a .pm file? In other words, I want to declare...
4316
h2ofaull
Jan 12, 2005 5:39 am
Greetings, I'm sure this is a straightforward problem, but I've searched the soaplite archives, and 3 suggested books on the subject to no avail... and it...
4317
Juan Fco Rodriguez
yonailo
Jan 12, 2005 8:18 am
... I'm using this: $service->xmlschema('http://www.w3.org/2001/XMLSchema39;); Regards! ____________________________________________________________________ ...
4318
xala1022
Jan 12, 2005 8:19 am
Thanks Byrne, I took note about your advice. At first, I used the Perl module WSDL::Generator for generate the WSDL document but I didn't achieve to access to...
4319
Klaus Guenter
klaus.guenter@...
Jan 12, 2005 9:24 am
Hi! ... Thats possible, but the current SOAP::Lite Module has problems including namespaces for external definitions. So at the moment you are limited to ...
4320
Klaus Guenter
klaus.guenter@...
Jan 12, 2005 9:29 am
Hi! No, you dont have to. Simply dispatch to the subs that live in your source file. If the calls dont get through, check the namespace you are using. Lets say...
4321
xala1022
Jan 12, 2005 9:52 am
Hi!! OK!! Current SOAP::Lite clients can't reach web-services returning array of strings, but what happens if I have an Axis client for example?? Will it...
4322
dchallender
Jan 12, 2005 10:23 am
Active State Perl 5.8 Win 2K Script was running OK with Soap lite 0.55 Added soap lite 0.65 beta 2.1 (as I wanted to see if better support for WSDL schemas...
4323
Klaus Guenter
klaus.guenter@...
Jan 12, 2005 10:31 am
... forgot to mention, that the CVS Version at sourceforge.net should be able to do just that. I'm testing at the moment. Rgds, Klaus -- People often find it...
4324
h2ofaull
Jan 12, 2005 4:11 pm
Sorry - to be clear, I have a new Certificate Authority (CA) certificate... I have installed this for my browser, but I think Perl isn't finding it. Thanks...
4325
Matt Wilks
viperformance
Jan 12, 2005 8:22 pm
I'm having a bit of trouble getting SSL to work properly using the SOAP::Lite Perl module. Here's the setup. A SAP business connector machine is making an...
4326
jmzorko@...
jmzorko
Jan 12, 2005 9:18 pm
Hello, all ... I've built a couple of SOAP components that act as clients and servers for each other, using the HTTP::Daemon transport (specifically, a ...
4327
jmzorko@...
jmzorko
Jan 12, 2005 9:51 pm
Hello, all ... How do I tell if a SOAP call failed due to a timeout or some other reason i.e. server not running? Consider: while ( $listener->handle ) { my...
4328
bobdottaylor
Jan 13, 2005 6:01 am
Has anyone created (or could someone provide) a sample PHP PEAR based client that is accessing a SOAP::Lite Perl based server... a sample PHP PEAR client for...
4329
Martin Nilsson
mnils1024
Jan 13, 2005 3:13 pm
I tried to use the latest beta together with mod_perl2 but no luck, I got the following for every access: [Thu Jan 13 14:29:21 2005] [error] [client...
4330
xala1022
Jan 14, 2005 3:32 pm
Hi All, I need your help. I have a problem. If I execute this code, it works, it returns the correct strings: #!/usr/bin/perl use strict; use SOAP::Lite; my...
4331
xala1022
Jan 14, 2005 4:24 pm
Hello!!!! Now I get this error executing the client-side program (the name of the program is proba_zenbaki.pl): 500 Internal Server Error at ./proba_zenbaki.pl...
4332
Alfonso Lopez
quiquee
Jan 15, 2005 9:48 pm
I cant manage to pass a parameter to a C# web service served by mono xsp. The service has a method "Prim" that takes an integer as argument. I have tried with...
4333
Duncan Cameron
duncan_camer...
Jan 16, 2005 10:29 am
... Using release 0.65 beta 2 look at doing something like my $soap = SOAP::Lite ->use_prefix(0) This will put the outer element in the default namespace and...
4334
bobdottaylor
Jan 17, 2005 6:23 am
I figured it out on my own... Here is a command line PHP client accessing the SOAP::Lite temperature sample service: #!/usr/bin/php <?php ...
4335
xala1022
Jan 17, 2005 8:35 am
Hi all, I got this error in the execution of my Perl SOAP::Lite client. I don't know its meaning: Can't call method "namespace" on an undefined value at ...
4336
S Roy
royinsoap
Jan 17, 2005 9:05 am
Need to work with the SOAP + WSDL + PERL webservices in UNIX. I need to get the proper installation guide with proper steps as well as some example. If anybody...
4337
Bryce Harrington
bryceharrington
Jan 18, 2005 2:57 am
Very cool... I've been playing with this all afternoon. :-) The one thing I can't quite figure out is if the soap daemon is providing access in an object...
4338
Robert Nicholson
robertatelas...
Jan 18, 2005 3:32 am
Why is it for this wsdl request main::lookup_isbn2(filter.pl:881): my $aws_handle = SOAP::Lite->service("$aws_wsdl"); DB<2> n ...
4339
oldfic4
Jan 18, 2005 9:14 pm
Someone please preserve my sanity! I'm attempting to consume a .net web service via a perl client using SOAP::LITE. Within the SOAP BODY I'm sending an element...
4340
Duncan Cameron
duncan_camer...
Jan 19, 2005 9:01 am
... <Acknowledgements ... portal_conveyancer_acknowledgement.xsd"> ... Set the type of xmlNode to be 'xml' and S::L will not escape it ...
4341
Mikel Salaberria
xala1022
Jan 19, 2005 10:22 am
Hi!!! I achieved to develop my web services successlly with SOAP::Lite. Now I want to search if it is possible to send files in a SOAP message as an ...
4342
Bryce Harrington
bryceharrington
Jan 19, 2005 6:00 pm
Attached is a script I did that does file uploads
by encoding them via MIME::Base64. Look at the
process_files() function.
Bryce
On Wed, 19 Jan 2005, Mikel...