... You need to do another valueof() on $job to get the jobItems, something like this is long-winded but seems to do what you want: for ($i = 1; my $job =...
1376
Doug Fulton
dwfulton
Mar 29, 2002 8:59 pm
My resuls structure has increased in complexity and I am having difficulty processing it. I have something like the following: <jobs> <job> <jobID> 1 </jobID>...
1375
Duncan Cameron
dcameron@...
Mar 29, 2002 6:36 pm
... Try the 'map' type: SOAP::Data->type(map => $hashref)->name('myhash'); With Apache SOAP, the Java deserializer will convert this to a hashtable (I think). ...
1374
Duncan Cameron
dcameron@...
Mar 29, 2002 6:31 pm
... It's not well documented but I think that you want to try the 'map' type: $result = $soap1->sendCart( $id, SOAP::Data->type(map => \%hash)->name('cart39;) );...
1373
dwfulton
Mar 29, 2002 6:27 pm
I am trying to construct the following as part of my request: <pages> <page> <url>blah</url> <hits>88</hits></page> <page> <url>deeblah</url>...
1372
loundry2000
Mar 29, 2002 4:56 pm
Hello All, I am new to SOAP and I am developing a perl client to communicate to a Java (AXIS) SOAP server using SOAP::Lite. The immediate problem is how to get...
1371
Paul Kulchenko
paulclinger
Mar 29, 2002 2:05 pm
Hi, Duncan! ... It looks like it's a limitation of ActiveState39;s controls. Minimal version doesn't include perl56.dll and for some reason doesn't work with...
1370
Duncan Cameron
dcameron@...
Mar 29, 2002 1:19 pm
... hmm, doesn't work for me either, although it has worked in the past using the large version of lite.dll I get the same error on my W98 machine, but get a...
1369
Paul Kulchenko
paulclinger
Mar 29, 2002 10:26 am
Hi, jchin1000us! tomcat can't execute CGI scripts as far as I know, so it just returns source of your server script and client complains that it's not ...
1368
jchin1000us
Mar 29, 2002 10:05 am
test...
1367
Sarinder Virk
sarinder_virk
Mar 29, 2002 7:24 am
Try http://search.cpan.org/doc/PDENIS/WSDL-Generator-0.01/lib/WSDL/Generator.pm I still ended up having to "hand-tweak" the resultant wsdl a little. ... From:...
1366
Rick Nicoletti
rickynicoletti
Mar 29, 2002 2:07 am
I've got a perl SOAP server (using SOAP::Lite, of course). Works fine with SOAP::Lite clients, but now I want a java client (using GLUE) to talk to it. As I...
1365
jboy55
Mar 29, 2002 1:10 am
Ok, I'm frustrated that this just isn't working. And I can't find a clear example in any of the documentation. i have a function on Java that looks like ...
1364
mitzui2001
Mar 28, 2002 3:26 pm
Hi, I've just installed soaplite and registered Lote.dll, and tried to run the server code downloaded from the soaplite site. However, I kept getting error...
1363
Paul Kulchenko
paulclinger
Mar 28, 2002 12:32 am
Hi, Doug! That's correct, however there is more "perlish" syntax: print $_->{'jobID'}, " ", $_->{'jobDetail39;}, "\n" for $som->(39;//job39;); ;) Best wishes, Paul. ...
1362
Doug Fulton
dwfulton
Mar 28, 2002 12:01 am
Lee, It works perfectly. And since I know exactly the name and number of nested elements, I can simplify it: my @jobs = $som->(39;//job39;); my $cn =...
1361
Doug Fulton
dwfulton
Mar 27, 2002 8:49 pm
I need to process results looking like: <jobs> <job> <jobID>1</jobID> <jobDetail>a</jobDetail > </job> <job> <jobID>2</jobID> < jobDetail >b</jobDetail > ...
1360
John Powell
johnp3d
Mar 27, 2002 7:33 pm
Hi everyone, I just installed SOAP::Lite on Linux. Up until now I've only been using it on Windows2000. When I try to run a small sample logged in as root, it...
1359
Daryl Williams
daryl@...
Mar 27, 2002 4:12 pm
hi paul, thanks for your reply. your explanation helped my understanding and i've got my test script working. i'm looking forward to using SOAP::lite in some...
1358
Paul Kulchenko
paulclinger
Mar 27, 2002 3:58 pm
Hi, David! ... Forgot to tell. As far as I remember I added a little bit of sugar to the ->result() syntax. ->result() in list context works as ... as ...
1357
David Houlding
davidhoulding
Mar 27, 2002 3:50 pm
Paul, I successfully verified that the approach you outlined below works. Thanks! Dave ... _________________________________________________________________ ...
1356
Paul Kulchenko
paulclinger
Mar 27, 2002 3:41 pm
Hi, David! ... This code is the same as "return (1,2,3)" which does not create an array on client side. It just returns three elements. ... this code runs as...
1355
davidhoulding
Mar 27, 2002 3:14 pm
Server #1 (incorrectly) returns: numGroupIds = 0 groupIds = While Server #2 (correctly) returns: numGroupIds = 3 groupIds = 123 Shouldn't these be the same? I...
1354
Paul Kulchenko
paulclinger
Mar 27, 2002 1:39 am
Hi, Daryl! ... That's the way perl works. Take a look here for more information. http://groups.yahoo.com/group/soaplite/message/838 ... SOAP::Lite->self...
1353
Daryl Williams
daryl@...
Mar 27, 2002 1:08 am
hello everyone. i am still pretty new to SOAP and SOAP::lite, so apologies if this is has already been covered, or if this is not the appropriate forum. i have...
1352
dstotte
Mar 26, 2002 12:30 pm
I have been handed a sample of what my results should look like, and have been trying to use SOAP::Lite to do this. The problem I have having has to do with...
1351
Rizwan Majeed
afarizwan
Mar 26, 2002 8:36 am
I need to establish cookies authentication mechanism using SoapLite server and a Visual C++ client. In the example given in SoapLite guide a perl client is...
1350
Doug Fulton
dwfulton
Mar 26, 2002 4:18 am
Brilliant. Now, after building up my dynamic hash, say %pages = ("a",1,"b",2,"c",3); I traverse it and push resulting SOAP::Data objects into @values: while...
1349
dwfulton
Mar 26, 2002 3:20 am
I am trying to construct the following as part of my request: <pages> <page> <url>blah</url> <hits>88</hits></page> <page> <url>deeblah</url>...
1348
jchin1000us
Mar 26, 2002 1:07 am
Hi all, My problem involves trying to run perl Hello_client.pl James with the following 2 files: #!perl -w #Hello_client.pl use SOAP::Lite; use SOAP::Lite...