Hi, my soapserver should generate customized faults as described in http://cookbook.soaplite.com/#soap%20faults So I have a test-function on the server: sub...
3705
Duncan Cameron
duncan_camer...
Jul 1, 2004 11:21 am
... From your example you appear to be sending back a literal ö character which is not valid UTF-8. This will cause a problem when the SOAP message is parsed...
3706
rafiq.ismail@...
rafiq_i
Jul 1, 2004 12:25 pm
RE: [soaplite] custom fault generates error 500 Hi Jens, if ($@) is defined you won't have a result object. You did an eval and thus you'll either have an...
3707
Duncan Cameron
duncan_camer...
Jul 1, 2004 1:20 pm
... Sorry to respond to my own posts ... I can confirm that the ö character does cause a "500 Internal Server Error", and that if the character is removed...
3708
Jens Puruckherr
jpuruckherr@...
Jul 1, 2004 2:04 pm
... That's it! Thanks! ... Mit freundlichen Grüßen Jens Puruckherr...
3709
chengal11
Jul 1, 2004 10:43 pm
Hi, I am fairly new to web services. I need to create a SOAP::Lite client to access a DotNet Webmethod that takes data structure as parameter. DotNet webmehtod...
3710
Sriya Santhanam
sriya_santhanam
Jul 1, 2004 11:19 pm
After investigating a little, I believe the problem is more generic than I thought. The SOAP::Lite deserializer seems to have a problem with all custom data...
3711
krishna M
chengal11
Jul 2, 2004 1:48 pm
Hi, I am fairly new to web services. I need to create a SOAP::Lite client to access a DotNet Webmethod that takes data structure as parameter. DotNet webmehtod...
3712
Kelvin Wu
kelvin.wu@...
Jul 5, 2004 6:26 am
Hi, I am new to SOAP::Lite. I am looking for a simple Perl script to do the follow thing. I am writting a client script to connect to the service which uses ...
3713
Duncan Cameron
duncan_camer...
Jul 5, 2004 7:32 am
... Looks OK, but I would break in into three steps, creating the SOAP::Lite object, calling the method, and accessing the result in order to test success of...
3714
Issac Goldstand
margol_il
Jul 5, 2004 6:49 pm
You indeed want to use Randy's repository. There are instructions for setting it ass a PPM repository at ...
3715
Gordon Pate
gpate3
Jul 6, 2004 4:33 pm
I have two scripts that both hit a SOAP::Lite server. One uses straight soap calls while the other uses wsdl. The one that uses soap calls looks like this: ...
3716
Amit Sharma
amitdce
Jul 7, 2004 6:47 am
Hello All, We are accessing a SOAP service from a SOAP Client. The error we get is this: "application failed during deserialization: xml processing instruction...
3717
Duncan Cameron
duncan_camer...
Jul 7, 2004 7:27 am
... Well, the error message is pretty clear as to where the problem is. Have you turned trace on and looked at the received data? Regards Duncan...
3718
Duncan Cameron
duncan_camer...
Jul 7, 2004 7:30 am
Sorry to post again but I hit send to soon. ... Well, the error message is pretty clear as to where the problem is. line 3, column 0,byte 4 refers to the...
3719
Amit_Sharma04
amitdce
Jul 7, 2004 11:42 am
Thanks, Duncan. The server is able to find cgi scripts, including the one we are using. WE checked that by printing html in it and opening it in the browser. ...
3720
Amit_Sharma04
amitdce
Jul 7, 2004 11:51 am
To detail, these are our requests and responses (through TcpTrace) Request: POST /cgi-bin/hibye.cgi HTTP/1.1 TE: deflate,gzip;q=0.3 Connection: TE, close ...
3721
Amit_Sharma04
amitdce
Jul 7, 2004 12:06 pm
Another development- We modified the parser.pm file, and put the xml SOAP message we intended to be generated by it directly into the parser code. And the...
3722
Duncan Cameron
duncan_camer...
Jul 7, 2004 12:56 pm
... This trace doesn't seem to correspond to the code that you originally sent. print SOAP::Lite -> uri('http://localhost:8080/cgi-bin/Demo/Demo') ->...
3723
Randall Marbach
remarbach
Jul 7, 2004 5:25 pm
Hi All Anybody out there have any leads/experience writing a BPEL4WS workflow engine in perl? Is there an interest in such a module? TIA Randy ...
3724
lacombeperl
Jul 7, 2004 8:09 pm
Greetings, I was wondering if any one would be kind enough to post a complete example of a DotNet Client using a WSDL to access a Perl SOAP::Lite server that...
3725
Amit_Sharma04
amitdce
Jul 8, 2004 4:04 am
Hi Randy and others: One of the things we at Infosys Technologies, Bangalore, are exploring is a workflow engine for web and grid services. The high level idea...
3726
allandrick
Jul 8, 2004 11:10 am
Hi folks, Relatively new to the world of SOAP::Lite, but basically familiar with the general concepts - I've implemented fairly complex "web services" using...
3727
lacombeperl
Jul 8, 2004 6:52 pm
Greetings, I am sending a soap envelope with 2001 xsi and xsd, but soap::lite server keeps returning 1999 xsi and xsd. Does anyone know how to force server to...
3728
Paul Harman
seancortan
Jul 9, 2004 12:35 pm
I'm trying to connect to a remote SOAP server using https://url, but my script is throwing the following error: 500 Can't locate object method "new" via...
3729
Duncan Cameron
duncan_camer...
Jul 9, 2004 12:51 pm
... I get the same error if I try to use https, and I have definitely *not* got all the necessary modules installed. Earlier this week there was a post about...
3730
Paul Harman
seancortan
Jul 9, 2004 12:57 pm
From: Duncan Cameron [mailto:duncan_cameron2002@...] ... Really? perhaps you'd be so kind as to post an ID reference to the post on Yahoo! groups...? ...
3731
Duncan Cameron
duncan_camer...
Jul 9, 2004 1:05 pm
... This is the one that I was referring to http://groups.yahoo.com/group/soaplite/message/3714 See my response to point 3 of the original post. Regards Duncan...
3732
Paul Harman
seancortan
Jul 9, 2004 1:09 pm
From: Duncan Cameron [mailto:duncan_cameron2002@...] ... Ta... I did see that message at the time, but ignored it since I'm on Solaris and thus am not...
3733
Issac Goldstand
margol_il
Jul 9, 2004 2:15 pm
For the record, if you're building the CPAN module on your own, you only need Net::SSLeay to "activate" https features in LWP. ... From: "Paul Harman"...