... the fact the question comes up so often indicates that the current behavoir is not what is desired, and we need something to override the behavoir. I'd...
1187
Duncan Cameron
dcameron@...
Jan 27, 2002 9:12 pm
Hello sherwln, This is a very frequently occuring question. Paul answered a similar question a few months ago, look here => ...
1186
iancrogers
Jan 27, 2002 6:12 pm
Hello. I'm new to the list today, so be kind to me. :) I've searched docs, Pavel's O'Reilly book, and now this list for a clue, but I'm still at a loss, so...
1185
sherwln
Jan 27, 2002 5:46 am
Hi! I would like to know how to go through a request line by line at a mod_soap server if the request is something like this: <m:PostFile...
1184
Sam Tregar
samtregar
Jan 25, 2002 6:23 pm
... Ok. Perhaps we should add a note in the docs about this then. This problem actually caused me a good deal of trouble - I thought the cookie wasn't being...
1183
Paul Kulchenko
paulclinger
Jan 25, 2002 6:14 pm
Hi, Sam! ... In a way, yes. What you see in debug output is produced by HTTP::Request->as_string() method, and doesn't include information that will be applied...
1182
Sam Tregar
samtregar
Jan 25, 2002 6:00 pm
Hello all. I'm using cookie-based authentication and I'm having a problem with the output from use SOAP::Lite trace => [qw(debug)]; When I send a request to...
1181
Anupriya Shrimali (DE)
s_anupriya2001
Jan 25, 2002 4:59 pm
Hi All , I'm using the apache-soap2.2 on server side and soap::lite on client side. My server is sending the java vector as response of the soap service but my...
1180
eat_lemon
Jan 25, 2002 3:46 pm
Hi, If soaplite return result is an object, is there any way I can prefix this object with the proper package name? For example If the return object type is...
1179
tim_bennington
Jan 24, 2002 11:05 am
Hello I have written an XMLRPC server using SOAP::Lite (version 0.52 - default installation options, Perl 5.6.1, Redhat Linux 6.2). I have struck a problem...
1178
Paul Kulchenko
paulclinger
Jan 22, 2002 11:59 pm
Hi, swapan_das! ... Yes, that should work (don't confuse 'proxy39; from SOAP::Lite and 'proxy39; from LWP::UserAgent: $soap->proxy('http://fake/39;)...
1177
swapan_das
Jan 22, 2002 11:15 pm
Cool! That worked!! Hopefully last question.. I have multiple endpoints. my $soap = SOAP::Lite->service ('http://localhost:8004/glue/urn:glueXXX1.wsdl'); my...
1176
Paul Kulchenko
paulclinger
Jan 22, 2002 9:43 pm
Hi, swapan_das! ... You can do something like this: use HTTP::Cookies; use SOAP::Lite; # you may also add 'file' if you want to keep cookie between sessions my...
1175
swapan_das
Jan 22, 2002 6:20 pm
Paul, Below is the header information that I get from the soap envelope. How do I use the glue session id in my subsequent requests to a different or same...
1174
aaron_of_montreal
aaron_of_mon...
Jan 21, 2002 9:18 pm
... If you follow the examples set by CGI.pm and the "Contentious Issues" section of the SOAP book, wouldn't you do both? e.g. return the fault, but set the...
1173
Paul Kulchenko
paulclinger
Jan 21, 2002 9:01 pm
Hi, Duncan! ... the ... No, server shouldn't read all the request at this point. In most cases it'll just redirect STDIN/STDOUT, so CGI application will get ...
1172
Duncan Cameron
dcameron@...
Jan 21, 2002 8:56 pm
Thinking about this a bit more, I'm not sure of the usefulness of checking content-length at this stage - it may be too late. What's the motivation? To stop...
1171
Paul Kulchenko
paulclinger
Jan 21, 2002 8:46 pm
Hi, Aaron! ... From the context it seems like this text applies to server side, rather than to client side, so Duncan's code should be sufficient in most if...
1170
aaron_of_montreal
aaron_of_mon...
Jan 21, 2002 8:36 pm
... [ apologies if this is a second post; the last one appears to have been sucked into the vortex...?! ] That's what I thought, originally, but decided to err...
1169
Paul Kulchenko
paulclinger
Jan 21, 2002 8:26 pm
Hi, swapan_das! What's the code that puts value in $result? If you use autodispatch or access endpoint with service description, then $result variable already...
1168
swapan_das
Jan 21, 2002 8:21 pm
Hi, When I call print "$result->result();" Can't call method "result" without a package or object reference at test1.pl line 10. I am trying to return a string...
1167
Duncan Cameron
dcameron@...
Jan 21, 2002 7:30 pm
Not sure that it need to be this complicated. Simply comparing $ENV{'CONTENT_LENGTH'} with the POST_MAX constant should be enough. The middle bit of the...
1166
Sam Tregar
samtregar
Jan 21, 2002 6:26 pm
... What is the point of registering a namespace if you don't register all that you intend to use? As I understand it, the point behind registering namespaces...
1165
aaron_of_montreal
aaron_of_mon...
Jan 21, 2002 5:02 pm
Hi all, I spent a bit of time over the weekend looking through the code for CGI-based SOAP servers for a way to implement a CGI.pm style POST_MAX flag. I ended...
1164
Paul Kulchenko
paulclinger
Jan 21, 2002 3:36 pm
Hi, Sam! ... Actually that's precisely what I did (you can find my message in the archive). And I carefully checked archives on that and related topics. In...
1163
Sam Tregar
samtregar
Jan 21, 2002 6:09 am
... I'll stick my neck out - I think this one was a bad choice. It probably should have been XML::Parser::Expat or just XML::Expat. But, hey, it's Larry...
1162
Paul Kulchenko
paulclinger
Jan 21, 2002 4:37 am
Hi, Sam! ... I agree. ... Hardly that much, but I'll do some tests to find exact number. ... There are two different problems. Every module uses at least one ...
1161
Sam Tregar
samtregar
Jan 21, 2002 3:41 am
... Sounds good to me. ... Ok, I guess this works out to an esthetic judgment then. I had an opposite reaction while working my way through the SOAP::Lite...
1160
Paul Kulchenko
paulclinger
Jan 21, 2002 2:07 am
Hi, Sam! Both points are valid. First of all, there WILL be redesign, but not VERY soon and I will ask for your suggestions re new design. Second, to my...
1159
marceusx
Jan 20, 2002 11:29 pm
While buidling a mod_perl SOAP::Lite application I've noticed that SOAP::Lite doesn't appear to re-intialise it's namespace variables on each call. For...