It is a max_client setting in the server. You should receive an error message about server busy (maybe?) p ... From: bnyec To: soaplite@yahoogroups.com Sent:...
6204
rahed
raherh
Aug 24, 2008 12:59 pm
... Fault string says you send a wrong envelope namespace. It should be xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" If there are problems I wouldn't...
6205
cracknphrack
Aug 25, 2008 4:34 am
I am using SOAP::WSDL (what I heard is a pre processor to the SOAP::Lite that runs underneath). Started with the usual wsdl2perl generated files (very handy,...
6206
rahed
raherh
Aug 25, 2008 1:52 pm
... I'm only familiar with SOAP::Lite where you can also change the envprefix with adding this line: $SOAP::Constants::PREFIX_ENV = 'soap'; ... It'd always be...
6207
Mark Knoop
marknoop2002
Aug 26, 2008 3:20 am
Thanks for your reply, Eric. I certainly have not ruled out the likelihood I am missing something obvious! What I am trying to understand is the logic of how...
6208
patrick mariani
w8itout
Aug 26, 2008 3:21 am
I had the same issue with the SOAP-ENV prefix - here is the answer. http://tech.groups.yahoo.com/group/soaplite/message/6124 p. ... From: cracknphrack To:...
6209
Mark Knoop
marknoop2002
Aug 26, 2008 3:21 am
Hi I am trying to get proof of concept SOAP server working but after I introduced an WSDL file I get the fault: ...
6210
b. nyec
bnyec
Aug 26, 2008 3:22 am
Nope, time is not a factor. waited a few mins before making 6th request. Â Discovered where the problem is, If i add a new package/pm and make my requests to...
6211
rahed
raherh
Aug 27, 2008 12:41 pm
... Have a look at JMeter at http://jakarta.apache.org/jmeter/ -- Radek...
6212
maurice_aubrey
Aug 28, 2008 1:35 pm
Hi. One of our supplies updated their .net soap interface and our existing SOAP::Lite code is now failing. We're using a wsdl specification, so all we've...
6213
rahed
raherh
Aug 28, 2008 6:48 pm
... You can first register the namespace/prefix: $soap->serializer->register_ns('uri39;=>39;xmlns:tns'); and then call each object: ...
6214
Chris Woodfield
cwoodfieldatl
Aug 28, 2008 8:10 pm
Try adding $soap->ns('http://foo.com/webservices/', 'tns'); This worked for me when I ran into the same issue. -C...
6215
maurice_aubrey
Aug 28, 2008 11:19 pm
... That didn't seem to do anything. I'm now doing this to set up the soap object. $soap = SOAP::Lite->service("file://$wsdl"); $soap->envprefix('SOAP-ENV'); ...
6216
maurice_aubrey
Aug 28, 2008 11:19 pm
... Does that mean, then, that I can't use the auto-stubbed methods from the service call? Currently I'm just doing this: $soap =...
6217
qafourever
Sep 1, 2008 3:23 pm
Dear Soap / Perl gurus! I'm using Windows Server 2k3 SP1 and Perl v5.6.1 I have no problem using soap::lite in general i.e. I can pich stock qutes from the web...
6218
qafourever
Sep 1, 2008 3:23 pm
Does soap:lite support DIME (attachments) well? Anybody that could share some example code excersising on a public internet service? I saw some about it being...
6219
Bryan
rdsxfan74
Sep 3, 2008 7:25 pm
I am trying to install SOAP Lite from MCPAN and it keeps freezing during the 'nmake test' call at the following line: Running make test Microsoft (R) Program...
6220
rahed
raherh
Sep 4, 2008 6:48 pm
... Look at this bug: http://rt.cpan.org/Public/Bug/Display.html?id=37151 I'd skip this particular test. -- Radek...
6221
Neal Rhodes
backporchrock
Sep 4, 2008 10:20 pm
We are trying to use SOAP-Lite-0.710.08 to make a healthcheck procedure to access our own Web Service running under Linux/Tomcat5/OpenEdge 10. This is running...
6222
Ragnar Hakonarson
lormidorido
Sep 6, 2008 7:20 am
Hi Paul, I am sorry to bother you but having now been struggling for days with getting my SOAP::Lite installation to return MIME attachment I see no other ...
6223
lormidorido
Sep 6, 2008 7:21 am
Hi Paul and others on the list, I am sorry to bother you but having now been struggling for days with getting my SOAP::Lite server installation to return MIME...
6224
rahed
raherh
Sep 6, 2008 11:57 am
... When I exclude CGI.t, all tests are successful and the module works ok. Though I don't use CGI part and compile with dmake....
6225
bohdan.linda
Sep 9, 2008 8:22 pm
Hello, From a soap call I am returning header and data. Header is constructed as: $header = SOAP::Header->name( "status"=>\SOAP::Header->value( ...
6226
Thomas J Pinkl
tpinkl
Sep 9, 2008 8:59 pm
... I cannot post the code, as it is part of a commercial product that is sold by my employer. In pseudo code, it would look like so (untested): use...
6227
Lamar Hawkins
dlamarhawkins
Sep 11, 2008 3:34 am
I'm running Perl v5.8.0 built for i386-linux-thread-multi under Linux 2.4.21-57.ELsmp. Our SOAP::Lite is at v0.710.08. We're dealing with a picky SOAP client...
6228
Lamar Hawkins
dlamarhawkins
Sep 17, 2008 12:09 am
(A few of the xmlns values were incorrect. They have been corrected inline below.) I'm running Perl v5.8.0 built for i386-linux-thread-multi under Linux ...
6229
Oeschey, Lars (I/ET-8...
lars.oeschey
Sep 24, 2008 2:29 pm
Hi, I have a little script that uses SOAP. I have problems with error handling. A little example script looks like this (working example): use SOAP::Lite; ...
6230
Lamar Hawkins
dlamarhawkins
Sep 25, 2008 3:37 am
Try the following syntax: $soap = SOAP::Lite -> uri("$yourURI") -> proxy("$yourProxy"); eval {$soapReply = $soap->function($soapRequest);}; if ($@) { chomp...
6231
Oeschey, Lars (I/ET-8...
lars.oeschey
Sep 25, 2008 8:03 am
... very nice, that works... another question, I didn't write the server part, but I have a feeling that it's not correctly implemented. If I give a wrong set...
6232
Lamar Hawkins
dlamarhawkins
Sep 25, 2008 5:38 pm
You will find that the "500 Internal Server Error" is returned for many cases where there is a problem on the server side like missing parameters or...