Is it somehow possible to access the peer IP address when using SOAP::Transport::HTTP::Daemon? When browsing through the manpage for HTTP::Daemon I realized...
Ok, found it out myself;) ... while (my ($c,$peer) = $self->accept) { my $sockaddr_template = 'S n a4 x8'; my ($af,$client_port,$client_ip) = unpack($sock ...
Hi, This is probably one of the most common problem people have had, but I have seen that they have overcome the problem. I also read all emails on this but...
A function exists to convert the packed network address to unpacked inet_ntoa($iaddr) You may have to "use Socket". Mark ... _______________________________ Do...
Not exactly a Soaplite issue, but I am just finding out that non-Perl (ie, MS Biztalk) clients need a WSDL page to be able to consume my Perl (Soaplite) based...
I am just trying to get some understanding of how to access web services through WSDL. I have this piece of code which uses SOAP::Lite, and this works: use...
Hi! I succesfully created a custom fault response in XMLRC with: die SOAP::Fault ->faultcode(XMLRPC::Data->type('int',99)) ->faultstring('myCustomFault'); Is...
Try adding http://theoryx5.uwinnipeg.ca/cgi-bin/ppmserver?urn:/PPMServer58 as a PPM repository and then do: ppm upgrade -install -precious SOAP-LiteThat might ...
Hi group, I'm having problems in generating a call to a webservice. The generated xml-code is ok, except for a ghost-tag. I'm using the following perl-code to...
hi, i want to know the adavantages and drawbacks of using webservices over http/webserver compared to the use via socket?? when i should use http and when...
hello everybody - i use SOAP::Transport::HTTP::Daemon as my soap-server, it's supposed to dispatch all request to a certain perl module. now i got the problem...
... Try "print ref($SOAP_envelope);" When I do it on a SOM object it tells me it is a reference to "SOAP::Data". Mark _______________________________ Do you...
Hi. I have a problem with a web application since upgrading Perl from 5.005 to 5.8.5. Some SOAP::Lite functions in the application gives some Mason web pages a...
Patrik Wallstrom
pawal@...
Sep 13, 2004 8:48 am
3917
I mean in the sense that PHP does, where variables submitted to a form are immediately available without any special effort. I vaguely remember reading...
All, I am new to writing web services, but not to Perl. Is there a how-to on what to do? I have the "Web Services with Perl" book from O'Reilly, but I'm...
... Well then, I'd say the first advice would be.. Return the book for the proper language?...
Thomas Charron
tcharron@...
Sep 14, 2004 8:59 pm
3920
... Ron, I've got some examples I created to help people get up to speed as painlessly as possible. I can mail them to you if you want. BTW: Don't feel alone...
Background: I've got a Document-Literal Wrapped web service which runs on SOAP::Lite and is dispatched with a modified Apache::SOAP. It uses WSDL files which...
If you don't (can't) specify the namespace in the WSDL, then SOAP::Lite will expect to find it in Perl's main namespace. Will it work if you put the subroutine...
Ron Try this Quick Start with SOAP article on Perl.com: http://www.perl.com/pub/a/2001/01/soap.html PeteR ... From: reidyre [mailto:ron.reidy@...] Sent:...
Ron Try this Quick Start with SOAP article on Perl.com: http://www.perl.com/pub/a/2001/01/soap.html Peter Rooke Consultant Serena Software ... From: reidyre...
I found a workaround for this. This forces the dispatch to go whatever was put in the SOAPAction header. It appears to work but needs more testing. (This is in...
Has anyone had problems with running mod perl with soap lite, where if you have a mix of static and dynamic bindings the -w or $^W appears to be getting turned...
... Look at: http://groups.yahoo.com/group/soaplite/message/3770 and http://groups.yahoo.com/group/soaplite/message/3843 Issac has done a lot with .Net and...
Hi! ... Yep. ;o) At least AFAICT, there is nothing like that in SOAP::Lite. There is a way to do that with CGI.pm though, maybe you are mixing that up. ...
Klaus Guenter
klaus.guenter@...
Sep 16, 2004 2:29 pm
3930
... He may be recalling something described in the POD under the heading "IN/OUT, OUT PARAMETERS AND AUTOBINDING". It shows an example of a client's variable...