When I'm writting perl based SOAP servers and there is a typo I don't get any error messages from the compiler, either at compile time or run time. All I know...
2362
Andy Kelk
mopoke_uk
Feb 11, 2003 11:22 am
Hi all, Thanks ever so much for all of the replies. It certainly gave me some new ammo to fire at the problem and I have now found a solution. I have ...
2361
Martin Hajduch
somebody8765
Feb 11, 2003 8:00 am
... i have to confirm this i have axis server returning an array of complex types as hrefs and i haven't encountered any problems (with hrefs) on the client...
2360
Duncan Cameron
dcameron@...
Feb 11, 2003 6:52 am
... I had a play-around with the xml you showed in your original post and SOAP::Lite doesn't seem to have a problem with hrefs. ================== my $xml =...
2359
Randy J. Ray
rjray_perl
Feb 11, 2003 4:37 am
... SOAP::Lite uses the LWP::UserAgent class for HTTP. Any options you would pass to LWP::UserAgent->new() you can pass in the proxy() method of SOAP::Lite: my...
2358
Randy J. Ray
rjray_perl
Feb 11, 2003 4:31 am
(Apologies to Andy for the duplication, I forgot to Cc soaplite) ... Similar to the response I gave a few days ago concerning arrays, the style .Net is...
2357
websocket <websock...
websocket
Feb 11, 2003 3:34 am
Has anyone done this? I need an example....
2356
msanesh <anesh@......
msanesh
Feb 10, 2003 10:57 pm
Does anyone know how to set the http timeout in soaplite? Thanks, Anesh....
2355
msanesh <anesh@......
msanesh
Feb 10, 2003 9:54 pm
I don't have direct relation with what you are trying, but I had a similar problem. I had soaplite client talking to apache axis server. The apache axis server...
2354
Andy Kelk
mopoke_uk
Feb 10, 2003 5:39 pm
Hi, Does anyone have any ideas on this at all? I've pretty much hit a wall and am about to give up with it. I think I might have to investigate other SOAP...
2353
Randy J. Ray
rjray_perl
Feb 9, 2003 10:18 pm
... Because of the different ways you can express arrays in XML Schema and WSDL, there is no one answer to this. The fact that you are writing to .Net is more ...
2352
Randy J. Ray
rjray_perl
Feb 9, 2003 10:06 pm
... Paul and I thank you. :-) ... Do you have the LWP (aka libwww-perl) package installed? I don't remember if SOAP::Lite requires it for installation, or just...
2351
Martin Keller
martin2901de
Feb 9, 2003 2:47 pm
Hi list, yesterday I bought the O'Reilley Book "Web Services with Perl" from Ray/Kulchenko. I am a newbie and was suprised how easy web services can be when I...
2350
websocket <websock...
websocket
Feb 8, 2003 2:13 pm
I'm new to SOAP so I thought I would start with SOAP::Lite. What's the syntax for sending back an array of strings. I tried something like the following: my...
2349
Martin Hajduch
somebody8765
Feb 7, 2003 10:19 am
... this was the problem, thanks ! however - i'm just wondering, that even as i was mapping B to the wrong namespace, if it was empty, it was not a problem...
2348
msanesh <anesh@......
msanesh
Feb 7, 2003 5:47 am
I have seem the process size grow in perl when multiple soap operations. I thought this was my script, but I tried it with the google API as well. The code I...
2347
msanesh <anesh@......
msanesh
Feb 7, 2003 5:40 am
This usually means that something is not being passed with the right type. Make sure that each element of the array is being passed as the right type. It looks...
2346
Dan Grigsby
dcgrigsby
Feb 6, 2003 12:42 am
Hi Jay, others: This seems like the most frequently asked question, and while it's been answered in pieces, I thought maybe I could try and package up the ...
2345
Andy Kelk
mopoke_uk
Feb 5, 2003 4:27 pm
As a follow up to my own message, I can get the data to be recognised if I get VB.net to use literal style with "wrapped" ParameterStyle. <soap:Envelope...
2344
somebody8765 <mart...
somebody8765
Feb 5, 2003 2:39 pm
hi ! i'm getting following error from axis: <faultstring>org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in...
2343
Andy Kelk
mopoke_uk
Feb 5, 2003 12:28 pm
Hi, I have searched the list and can't find an exact answer to my question. I have completed a SOAP::Lite server that works fine when I feed it from a...
2342
Duncan Cameron
dcameron@...
Feb 4, 2003 11:29 pm
... It's to do with namespace prefixes which cannot begin with xX|mM|lL. I can't figure out whether SOAP::Lite is correct in your case, it's a bit too late at...
2341
Sven Paulus
sven_paulus
Feb 4, 2003 9:31 pm
Hi, I'm currently trying to use a SOAP::Lite based server (mod_perl) with a SOAP::Lite based client. However the server complains about namespace problems: ...
2340
vanvuure <marcel_v...
vanvuure
Feb 4, 2003 1:48 pm
Hi, I have got a soap server that has a method 'OpenSession39; that should return a boolean, 'return39; and a string 'session id'. The soap envelope of how the...
2339
Stephen.Rosman@...
Feb 4, 2003 1:32 am
I've had a bit of a rummage in the source code, I've installed it successfully on another server, I've reinstalled libnet, libwww, SOAP::Lite, I've got the...
2338
Keanan Smith
KSmith@...
Feb 3, 2003 7:51 pm
Umm, kinda, it's *legal* but not what your documentation indicates it is. It's actually calling the function OpenSession with one paramater, an XML, the XML...
2337
vanvuure <marcel_v...
vanvuure
Feb 3, 2003 2:00 pm
Hi, I have an existing soap client and for that client, I have to build a soap server. I'm building the server in SOAP::Lite. The client has already been built...
2336
Stephen.Rosman@...
Feb 3, 2003 7:13 am
I'm trying to get the SOAP::Lite library working and I'm getting an insanely stupid error. (SOAP-Lite 0.55 on Apache 1.3 on Red Hat Linux 7.0) I set up the...
2335
Rajesh Kumar Mallah &...
mallah_rajesh
Feb 2, 2003 12:36 pm
Hi Folks, My SOAP::Lite server crashes anytime and stops listening. how shud i debug the problem . is there any way to trace on *server* side and log the...
2334
diane7b <diaben@.....
diane7b
Feb 1, 2003 6:16 pm
I have a java soap service that takes a user-defined object as request parameter and returns a user-defined object as the soap response. One part of the...