Hi, I've been messing with SOAP::Lite for the past few days. It's really neat, but It seems difficult to get to the message level directly. The application I'm...
1581
Paul Kulchenko
paulclinger
Jun 2, 2002 5:46 am
Hi, hillct! ... no. ... I'm not sure how your server code looks like, but if you have server and package in one file you may check these two messages for ...
1582
manish_s_patil
Jun 2, 2002 12:53 pm
I am working on te SOAP:LITE and while useing webservices from the WSDL file i got a pretty complex type my wsdl file is as follows, ********************* ...
1583
Colin Hill
hillct
Jun 2, 2002 3:16 pm
Paul, Thanks. That did the trick. I did go through the archive for the answer before posting. I guess it would have helped if I'd had a better idea what I was ...
1584
Mark Wilkinson
professorwil...
Jun 3, 2002 9:23 pm
Hi Paul and Others! I'm experiencing some very strange behavior when I use a WSDL file as my service description to SOAP::Lite. Here are the symptoms: ...
1585
Duncan Cameron
dcameron@...
Jun 3, 2002 10:08 pm
... The syntax in your first attempt is awry. The line print $Service->call($method => "some input")->paramsall; needs to be print...
1586
Mark Wilkinson
professorwil...
Jun 3, 2002 10:21 pm
... I've updated the WSDL file to accomodate your suggestion. It now reads: http://bioinfo.pri.nrc.ca/Check.wsdl you'll notice that I added the soapAction...
1587
Mark Wilkinson
professorwil...
Jun 3, 2002 10:37 pm
Interesting, though, is that if I pass it as a file rather than as a string it passes the XMP::Parser parse without an error (though I still get the error 500...
1588
ritun2000
Jun 4, 2002 12:52 pm
Hello Pierre & others, I just tried implementing the below for generating a wsdl for a service that has been implemented using SOAP::Lite without Apache mod ...
1589
gwzoller
Jun 4, 2002 2:08 pm
Hello... Below you'll find code for common examples for calling a GLUE server with a perl (SOAP::Lite) client. I wrote an earlier version of this but GLUE...
1590
Mark Wilkinson
professorwil...
Jun 4, 2002 3:25 pm
Although I can confirm the peculiarity below does continue, all other problems have now been resolved. Thanks Duncan for your insights into my...
1591
Mark Wilkinson
professorwil...
Jun 4, 2002 4:39 pm
One thing I have noticed as a minor irritant in using SOAP::Lite is that it is extremely difficult to generate new modules which inherit from it. This is...
1592
Paul Kulchenko
paulclinger
Jun 4, 2002 6:26 pm
Hi, Mark! ... Hm. Could you elaborate on that? I don't see any problem except when you try to override new() method itself. To avoid recursion you may add...
1593
Chris Caughlin
ccaughlin2000
Jun 4, 2002 11:17 pm
I am following the book Programming Web services with SOAP. I have the perl hw_client.pl and the Hello_server.cgi working. When I try using the ...
1594
abhijit_dixit
Jun 5, 2002 1:15 am
Hi, I'm having a problem using SOAP::Lite as a client with a Apache SOAP server. I'm using the addressbook sample from IBM Alphaworks39;s WSIF which has a WSDL...
1595
William McCracken
usiwill
Jun 5, 2002 7:55 pm
Hello, I am using SOAP::Lite as a client connecting to an Axis server. I am having trouble sending a proper message. I have read through the messages on this ...
1596
thundercat ho
jredburn
Jun 6, 2002 6:21 pm
I'm trying to use SOAP::Lite to write a simple client to interface with one of the .NET My Services, specifically myFavoriteWebSites. Basically, I just need to...
1597
ritun2000
Jun 7, 2002 11:24 am
Hello all, I just found through some trial and error that SOAP::LIte does not process data greater than 75000 bytes. I was trying to figure out, where this...
1598
Paul Kulchenko
paulclinger
Jun 7, 2002 6:48 pm
Hi, Ritu! What do you mean by "does not process"? What errors are your getting? There is no size limitations in SOAP::Lite and I've tested it with the messages...
1599
ritun2000
Jun 8, 2002 9:36 am
Hi Paul, Thanks a lot for your prompt response. I have three test cases here and varying responses: Case 1: The test was done by writing a client and running...
1600
ritun2000
Jun 8, 2002 10:10 am
Hi Paul, I have attached the client code herewith for your reference. #!/usr/bin/perl BEGIN { $::INC[@::INC] = "/net/lib"; require Netconfig; require CGI; ...
1601
Duncan Cameron
dcameron@...
Jun 8, 2002 12:26 pm
... This points to a configuration limit in your web server, nothing to do with SOAP::Lite. ... This is the http status code returned by your web server before...
1602
Joi Ellis
gyles19@...
Jun 8, 2002 1:23 pm
... The CGI module has size limits in it by default. You need to edit the CGI.pm module and change it. Look for variable $POST_MAX. -- Joi Ellis ...
1603
stevetrans140
Jun 10, 2002 3:33 pm
Hi guys, I have written my server in SOAP::Lite and client in Java. How would I be able to return multiple values to my Java client, and/or a 2-d array?...
1604
Paul Kulchenko
paulclinger
Jun 10, 2002 3:57 pm
Hi, stevetrans140! ... simply return list return (1,2,3); for multiple values and return [[1,2], [3,4]]; for 2-d array (strictly speaking Perl doesn't have...
1605
xz_sg
Jun 11, 2002 3:05 am
Hi all, Can someone help me to figure out what is the most convenient way to do this: If I have this in my xml respose from a web service: .......... <Person> ...
1606
Paul Kulchenko
paulclinger
Jun 11, 2002 4:21 am
Hi, Mark! ... Yes, I can confirm that. The reason for that is that data: protocol expects all data to be escaped or base64 encoded. '#' symbol marks end of...
1607
Mark Wilkinson
professorwil...
Jun 11, 2002 3:02 pm
That works just dandy! thanks Paul, M ... -- ... "Speed is subsittute fo accurancy." ________________________________ Dr. Mark Wilkinson, RA Bioinformatics ...
1608
marceusx
Jun 12, 2002 4:29 pm
Hi, I have a SOAP::Lite server that issues a LWP and returns the contents of an arbitrary URL and in some instances there are charecters which force SOAP::Lite...
1609
One4K4
Jun 13, 2002 2:23 pm
Maybe an option would be to have little "wrapper" subroutines: sub byposGetAcctNumber { my $self = shift; my ($name,$ss) = @_; ...