From the client side If you have completed the request and have the SOM object, you can request ...
6500
dukeofperl
Aug 26, 2010 5:21 pm
My search did not turn up any existing threads on this subject. I'm trying to use the SOAP::Transport::HTTP::Daemon class to establish a standalone server. My...
6501
Dave Howorth
dhoworth@...
Aug 27, 2010 8:39 am
... <snip> ... It works for me, after I removed "use Demo". It's not supposed to return - did you read the docs? [hint "The SOAP::Transport::HTTP::Daemon class...
6502
jaikanth
tinkulkar
Sep 16, 2010 6:20 pm
I am a beginner to using SOAP::Lite with perl Below is a code snippet I am using. I managed to induce a fault by providing an incorrect proxy. use SOAP::Lite; ...
6503
Mithun Bhattacharya
inzoik
Sep 23, 2010 8:56 pm
I don't seem to be able to recreate your scenario. I tried setting the URL wrong in the proxy and SOAP::Lite says 404 Not Found at. If the host part is wrong...
6504
chaljan@...
chaljan...
Sep 30, 2010 3:43 pm
Hello, I use soap lite and I wonder how can I simply print the soap body of a response or request for debugging purposes. Is it somehow possible ? Thanks, Jan...
6505
Martin Busik
mbusik70
Oct 2, 2010 1:38 pm
Hi, ... Variant 1: use SOAP::Lite (+trace => [qw(transport debug parameters)]); Variant 2: SOAP::Lite->import( trace => [ transport => \&ws_transport_logger...
6506
Eric Comeau
captcuffs
Oct 4, 2010 4:17 am
I'm sure I ran into the same issue before and now I always check if the returned result is defined or not... can't remember if a timeout will cause this -...
6507
drwaiyy
Oct 5, 2010 3:30 pm
Hi All, I am new to SOAP. I have set up 2 machines, 1 client(Ubuntu), 1 server(centos). and a wsld: <?xml version="1.0" encoding="UTF-8"?> <definitions...
6508
prami_22
Oct 5, 2010 3:30 pm
Hello, I am writing a web service to return contents of a file At server side I can open a file & read contents but when client calls same method, I get...
6509
Dave Howorth
dhoworth@...
Oct 5, 2010 3:48 pm
... [snip] ... The first hit in google is http://www.soaplite.com/ Have you looked at the guide or the cookbook or the code samples? etc etc Cheers, Dave...
6510
Dave Howorth
dhoworth@...
Oct 5, 2010 3:51 pm
... You're getting it because you've done something wrong and you could avoid it either by fixing it or by using a different solution. If you want some more...
6511
prami_22
Oct 6, 2010 5:53 am
here is my server & client code #-------------------server.cgi---------------------- #!/usr/bin/perl -w use SOAP::Transport::HTTP; SOAP::Transport::HTTP::CGI ...
6512
Dave Howorth
dhoworth@...
Oct 6, 2010 8:34 am
prami_22 wrote: [snip] ... and so ... ???? what have you done to investigate????? Does /home/pramila/config exist? What are its permissions? What user is your...
6513
Chris Woodfield
cwoodfieldatl
Oct 6, 2010 3:01 pm
Please tell me that you've already verified that server.cgi is readable and executable by the (most likely unprivileged) UID that your apache daemon runs as......
6514
Dave Howorth
dhoworth@...
Oct 6, 2010 3:07 pm
... I don't think it would get to line 13 if it wasn't accessible! :)...
6515
Chris Woodfield
cwoodfieldatl
Oct 6, 2010 3:57 pm
Correction: /home/pramila/config needs to be reachable by apache, not server.cgi... -C...
6516
prami_22
Oct 7, 2010 6:44 am
Yes , that was the problem. Though my file had 644 rights, it was not readable by apache. After I added user apache to my group, client could read it Thanks...
6517
Milan
bmilan...
Oct 11, 2010 11:37 pm
I am developing Internet oriented application to communicate with SOAP...
6518
Martin Busik
mbusik70
Oct 13, 2010 7:27 pm
Hi Milan, "use": use SOAP::Lite (+trace => [qw(transport debug parameters)]); instead of use SOAP::Lite that way you get dumped the xml-contents of the request...
6519
Milan
bmilan...
Oct 16, 2010 3:58 am
I sent message to the server, and I got following trace: SOAP::Transport::HTTP::Client::send_receive: HTTP::Request=HASH(0x2f1b15c)...
6520
bycv3
Oct 21, 2010 6:22 am
Dear All, I am using Perl SOAP server with code ===========Code============= use SOAP::Transport::HTTP; use Data::Serializer; use SOAP::Lite +trace => 'debug39;;...
6521
dukeofperl
Oct 26, 2010 9:55 pm
I have a soap server running using the standard examples found on the web ... like the hibye example shown here ... Client ====== #!perl -w use SOAP::Lite; ...
6522
Dave Howorth
dhoworth@...
Oct 27, 2010 8:53 am
... [snip] ... What do you mean by "deploy this from a web browser"? It sounds nonsensical but perhaps if you explained what you are trying to do, it would...
6524
as.aellen
Nov 2, 2010 3:03 pm
Hi all My perl soap client sends a Soap reques to the Server. Basically this works and the server finds the operation getCustomerAccessState. when it ...
6525
Martin Busik
mbusik70
Nov 2, 2010 3:40 pm
Hi, ... I'd suppose it is the namespace. Check if your xsd contains an attribute elementFormDefault="qualified" if this is the case, you have to use a...
6526
prami_22
Nov 3, 2010 6:56 am
Hello, I have written a soap server in perl & client in PHP but when calling method I get follwoing error ... PHP Fatal error: Uncaught SoapFault exception:...
6527
Martin Busik
mbusik70
Nov 3, 2010 8:39 am
Hi, see the documentation to the on_action method. you might use something like: $proxy->on_action(sub{"http://example.com/soap/my_api.wsdl#$method"}); where...
6528
chfoerst@...
chfoerst...
Nov 3, 2010 3:56 pm
Hi all, I have a nice running Soap-Server, which can be started in HTTP or HTTPS mode. When I start this in HTTPS mode, and I telnet on the listening Port, the...
6529
Martin Busik
mbusik70
Nov 3, 2010 6:38 pm
Hi Andres, ... $webService->call("doc:getCustomerAccessState",SOAP::Data->name("doc:request ") ... I see there two problems: 1. you need either to add: ...