Hi All, I was working on a soap script that should enable me to start and stop a service on a machine externally. (in Windows 2000 speak: 'net start ...
3035
Fabio Berbert de Paula
fberbert
Oct 1, 2003 3:03 pm
Hi all, I have the following code in ASP to connect into a SOAP Server: ... objSoapClient.mssoapinit "http://mydomain.com/Dispatcher.wsdl", "Dispatcher",...
3036
Simon Lok
simonlok
Oct 3, 2003 3:32 am
I've got a JWSDP-1.2 backend running a JAXRPC service that exposes a WSDL. I've got a frontend that uses PERL to generate web pages and SOAP::Lite to connect...
3037
Eric Amick
eamick
Oct 3, 2003 10:09 am
... XML doesn't care for ampersands (and a couple of other characters) in its data. The HTML::Entities module should be useful: use HTML::Entities; . . . #...
3038
Duncan Cameron
duncan_camer...
Oct 3, 2003 10:38 am
... True, but SOAP::Lite should be taking care of that. A simple test showed that an ordinary SOAP::Lite call (not WSDL) did handle the & correctly. How is the...
3039
Thom Eden
teden
Oct 3, 2003 8:21 pm
Folks, I am having an issue parsing a SOAP::SOM envelope. Basically, I have an array of arrays, e.g. <A> <B>q</B> <B>r</B> </A> <A> <B>x</B> <B>y</B> </A> The...
3040
Simon Lok
simonlok
Oct 4, 2003 12:54 am
Thanks for helping... here are what I believe to be the relevant fragments of the WSDL... <complexType name="ArrayOfint"> <complexContent> <restriction...
3041
Simon Lok
simonlok
Oct 4, 2003 1:12 am
I hate suggesting that there is a bug in SOAP::Lite but I can't really think of anything else... here is a trivial JAVA web service that will demonstrate the...
3042
dcaffey_fl
Oct 6, 2003 10:12 pm
Dear SOAP::Lite Group, I'm a newbie to SOAP and have a question that I've scoured all the docs I can find for an answer to no avail; maybe one of you can tell...
3043
Byrne Reese
byrnereese
Oct 7, 2003 12:19 am
The trick is to use the on_action subroutine that belongs to your SOAP::Lite client object. http://cookbook.soaplite.com/#customizing%20soapaction%20header ......
3044
Mike Klein
mikeklein@...
Oct 7, 2003 1:50 am
My Perl skills are admittedly near non-existent... I am running on a RH9 system, with Perl version 5.8.0. I purchased the Programming Web Services with Soap...
3045
cicbaba
Oct 8, 2003 9:40 am
Hi, I need help in simple threaded solution. How can I join the active thread? After I was started the thread I want him to join itself at the end and go back...
3046
teden
Oct 8, 2003 1:20 pm
... have an array of arrays, e.g. ... element. How do you do this?...
3047
teden
Oct 8, 2003 1:21 pm
Ok, I am beginning to get it. My code below is doing exactly what I asked it to - get the som tree for all A elements, then get the som tree for all B...
3048
Duncan Cameron
duncan_camer...
Oct 8, 2003 3:32 pm
... One way is to iterate through the children at each level, like this: my $xml = <<'END'; <root> <A> <B>q</B> <B>r</B> </A> <C>c stuff </C> <A> <B>x</B> <C>c...
3049
Mike Klein
mikeklein@...
Oct 8, 2003 9:28 pm
Problem was sample hello world application in book "Programming Web Services with SOAP" has an error. print SOAP::Lite -> uri('urn:Example139;) ->...
3050
teden
Oct 9, 2003 2:57 pm
Duncan, Thanks, you pushed me through my Mental Block... Here is how I ended up doing it: #!/opt/perl5.6/bin/perl # Pragmas use strict; use warnings; # Perl...
3051
hamstiede
Oct 10, 2003 6:47 am
I try to connect my soap-client to a soap-server that is working with Persistence HTTP connections: The Server-API works with logical sessions. If the HTTP...
3052
tisc_swo
Oct 10, 2003 11:25 am
Hi, I have some problems handling the response from a certain SOAP-call. The response contains several elements, and the format is basically as below, though...
3053
Thomas Eden
teden
Oct 10, 2003 12:04 pm
Stig, Basically, you want to use $som->dataof, but loop through using a numeric reference as opposed to name reference - the trick here is realizing that ...
3054
bjbarleyjuice
Oct 10, 2003 3:20 pm
Greetings, I apologise if wrong but I think I've been through the messages and don't find this. I get a response (array of arrays that contain refs) envelope...
3055
bjbarleyjuice
Oct 10, 2003 3:20 pm
Greetings, I apologise if wrong but I think I've been through the messages and don't find this. I get a response (array of arrays that contain refs) envelope...
3056
Duncan Cameron
duncan_camer...
Oct 10, 2003 6:24 pm
... Not sure what you mean here. $som->result() will return the value of the first element within the method element. In your case that is the errorCode...
3057
Duncan Cameron
duncan_camer...
Oct 10, 2003 6:28 pm
... Not pretty but it does what you need. ... If this approach gets too much, you can extract the SOAP envelope using ->outputxml(1) and then use an XPath...
3058
Byrne Reese
byrnereese
Oct 13, 2003 5:19 pm
Dear SOAP::Lite User Community, Many weeks ago I announced the availability of SOAP::Lite v0.60 and a new soaplite.com website. Well 0.60 is out and running,...
3059
jhebertocx
Oct 14, 2003 12:54 am
I see in the archive one other poster has found this method of checking to see if a class has already been loaded to be troublesome, and now so have I. ...
3060
Shao Ming
shaoming@...
Oct 14, 2003 5:47 am
Hi to all, I'm trying to implment some simplistic authentication check using the un-documented function 'on_dispatch39;. Below is the part where I wrote my on...
3061
Jørgen Austvik
jaustvik
Oct 14, 2003 9:36 am
Hi. We have a strange SOAP problem that shows up from time to time. On the server side we use SOAP::Lite 0.55 on a IIS web server using the latest PerlEx for...
3062
Duncan Cameron
duncan_camer...
Oct 14, 2003 3:00 pm
... up ... it ... even ... what ... falls ... the ... Jim This appears to be a problem with using the CGI interface. The same client and server work when using...
3063
Jim Hebert
jhebertocx
Oct 14, 2003 5:37 pm
... Ah, yes. I actually stopped and figured that out, at one point, too, but then I thought that was so crazy that I must have done something wrong and didn't...