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...
... 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...
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...
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...
... [ 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...
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...
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...
... 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...
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...
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...
... 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...
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 ...
... 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...
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...
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...
... Interesting. And does Data::Manip also contain numerous sub-modules packaged interally? ... time passes as I install Date::Manip ... Nope. Its size...
... I'd be far from claiming that my system is representative, but to deliver just one random data point edd@homebud:/usr/share/perl5> find . -name \*.pm -size...
Why is SOAP::Lite stored in one module file? I ask for two reasons: 1) It seems to me that memory usage could be lowered if modules were only loaded into...
1155
Duncan Cameron
dcameron@...
Jan 20, 2002 9:50 pm
I think that your syntax was slightly awry, try this SOAP::Data->name('FileURL39;)->type(ordered_hash => [ File => 'file139;, File => 'file239; ]) ->attr({baseurl =>...
Hi! Can somebody tell me why _attr_ in my first SOAP::Lite code doesn't show in the soap request. use SOAP::Lite +trace => 'all'; my $soap = SOAP::Lite ->...
1153
Duncan Cameron
dcameron@...
Jan 18, 2002 6:51 pm
David From your explanation I'm not sure what your problem is. Is it that you don't want to receive data encoded as utf8? Well, that shouldn't be a problem as...
Hi everybody! I'm developing an integration module between intershop4 and a scala system using the soap::lite module. What I'm doing is the client that works...
hi, have performance problems with hp-ux/tcpip <-> solaris/tcpip using nt-server, there is no big difference in performance. i patched the UserAgent.pm in the...
Hi, i'm using MSSOAPtoolkit ver 2.00, with VC++. have looked at the examples that come with the toolkit. Question, can you create a simple Listner in C++ using...
Here's an example of client-side code that works: my $service = SOAP::Lite->service(39;http://foo.foo.com/foo.wsdl39;); my $loginToken = $service->login( ...
In March of 2001, Paul wrote : "Absolutely agree. That's the reason why I want to introduce some additional transport options, like ACCEPTABLE_CONTENT_TYPE (if...