I've been upgrading some of my servers, and as a result, ended up with the new version of SOAP::Lite on my system. One of my CGI scripts uses SOAP::Lite to...
4170
Duncan Cameron
duncan_camer...
Nov 9, 2004 11:27 pm
... Hi Kyle I'm a bit surprised that you think that the earlier version of SOAP::Lite didn't encode the data, but given no other information that is what...
4171
Kyle Ellrott
kellrott@...
Nov 9, 2004 11:37 pm
... Previously, according to debug output, it would simply pass back my XML without changing the '<' s to '<'s. That's really beside the point ;-) It used...
4172
zperlcoder
Nov 10, 2004 1:18 am
I have a daemon monitoring a directory and sending files using SOAP::Lite to a .NET SOAP service. Everything seemed ok until I looked at the memory...my...
4173
Issac Goldstand
margol_il
Nov 10, 2004 4:29 am
I would also take a look at ActiveState39;s old PerlEx implementation. In their WebServices implementation, they defined something called a "UIS (Universal...
4174
Duncan Cameron
duncan_camer...
Nov 10, 2004 11:00 am
... Hi Alex I was puzzled as to why you had an eval {} around the creation of the SOAP::Lite object, then noticed that you have a namespace() call. This is...
4175
zperlcoder
Nov 10, 2004 4:55 pm
Duncan, thanks for your quick response. I removed the namespace call and put the eval statement around the method call (the way it should have been...) but my...
4176
grp_member
Nov 10, 2004 6:32 pm
Hi all, I have deployed a soap::lite service and the response is as below. An Axis 1.1 client is having difficulty interpreting this response. We believe it is...
4177
zperlcoder
Nov 10, 2004 10:17 pm
Duncan, I used Devel::Leak::Object to check whether the $soap object was destroyed at the end of the run....here is the code I used: my $i = 0; while($i < 2){ ...
4178
Duncan Cameron
duncan_camer...
Nov 10, 2004 10:44 pm
... Sorry, that is getting beyond my knowledge. As a workaround can you look at re-using the S::L object each time, rather than creating a new one? I would...
4179
Bryce Harrington
bryceharrington
Nov 11, 2004 3:17 am
WebService::TicketAuth 1.01 is released to CPAN and should be available for download from here within a few hours: ...
4180
Byrne Reese
byrnereese
Nov 11, 2004 4:09 am
Please consult: As odd as it may look, that is perfectly normal. The first group of headers are HTTP headers. The second group is MIME headers. One thing may...
4181
Will Fawcett
nailism23
Nov 11, 2004 6:44 am
To Start, I am a newbie to SOAP WSDL and Sadly even OO-Perl, So I realize I am at a extreme disadvantage. But I really need to get a Soap Client Sending and...
4182
Duncan Cameron
duncan_camer...
Nov 11, 2004 12:28 pm
... For your purposes, if you do not want to pass any data from the client to the server then you can leave that out. ... It looks like the inheritance from...
4183
freditotheterrible
freditothete...
Nov 11, 2004 10:42 pm
Hi all, I'm planning to write a little app using SOAP::Lite for the network interface. Basically I want to do some work on a main thread, and spawn a separate...
4184
Byrne Reese
byrnereese
Nov 12, 2004 1:14 am
Your understanding of the problem is spot on. In fact, implementing just what you have specified would be a HUGE leap and would lay the ground work for the...
4185
grp_member
Nov 12, 2004 1:58 am
Hi, Thanks for your suggestions Byrne and Duncan. I have tried both MIME::Tools 6.200_02(development - discontinued) and 5.415 (latest) releases with - local...
4186
sheikmohamed7
Nov 12, 2004 7:53 am
Hi Guys, I am new to this group.I am facing problem of generating wsdl for SOAP Server using SOAP::Lite.and where to put this WSDL file ,and how to access...
4187
Mike Schroeder
MikeSchroeder@...
Nov 12, 2004 4:57 pm
... Great! for the YAML parser is simple, and I've *started* on the WSDL generation. For me, the rest is the hard part -- sounds like a good partnership! ;) ...
4188
Robert Nicholson
robertatelas...
Nov 12, 2004 10:45 pm
Is it possible to send an asynchronous soap request using soap lite? Are there standards that govern this?...
4189
Byrne Reese
byrnereese
Nov 13, 2004 8:28 pm
Does SOAP::Lite support callbacks? Yes... and no. Callbacks only work between .NET servers and .NET clients, Workshop clients and Workshop servers, etc. That...
4190
Byrne Reese
byrnereese
Nov 14, 2004 12:25 am
This looks to me like a classic problem of how SOAP::Lite handles complex types... You seem to have understood how to handle these issues within the Body, now...
4191
Byrne Reese
byrnereese
Nov 14, 2004 12:31 am
This is a real challenge: You see, your response is not valid XML. SOAP absolutely MUST be valid XML otherwise it cannot be parsed and it will be unable to...
4192
Robert Eden
rmeden
Nov 14, 2004 12:32 am
I've gotten confirmation that some Windows 98 user still are getting the perl crash when they try and fetch a large amount of data using SOAP::Lite. I no...
4193
Byrne Reese
byrnereese
Nov 14, 2004 12:41 am
This seems highly irregular. Can you provide me with a trace of the program? Perhaps you can turn debugging on: use SOAP::Lite +trace => qw(debug); Send me the...
4194
Byrne Reese
byrnereese
Nov 14, 2004 8:39 am
Thank you for reporting this. This has been fixed in development and will go out with SOAP::Lite-0.65 Beta 3. It was addressed by using the...
4195
Byrne Reese
byrnereese
Nov 14, 2004 9:26 am
SOAP::Lite 0.65 gives you access to the HTTP::Request and HTTP::Response objects on the client and server side of things. They are located in the ...
4196
Byrne Reese
byrnereese
Nov 14, 2004 6:15 pm
You have two options: a) change the soapAction to MyTest#actionLog in the wsdl/client b) change dispatch_to in your server class to: ->dispatch_with({...
4197
Byrne Reese
byrnereese
Nov 15, 2004 1:44 am
The next release of SOAP::Lite should have a better MIME::Tools detection mechanism so that these tests will be skipped (and thus not fail) if MIME::Tools is...
4198
Byrne Reese
byrnereese
Nov 15, 2004 2:25 am
Judging by the original message in this thread you are looking for a way to post an XML document to a URL, but you don't want all the SOAP Envelope, SOAP Body...