Can someone please provide a simple example or point me to a simple example? It doesn't seem like this is anything crazy I'm trying do...but, I just can't find the answer. Thanks in advance!
:) we use LWP to talk HTTP ... SOAP can use HTTP ... good luck with that :)
W3C::SOAP::Client
Here is my copy/paste of my soap tips (I hate soap), SOAP::Lite is too much work, SOAP::Simple is less work (but its simple, when stuck go to XML::Compile::SOAP, more verbose, but you want verbose with SOAP ) ... its built on XML::Compile::SOAP/http://perl.overmeer.net/xml-compile/#doc , see my treasure trove of soap examples and lost knowledge,$soap->transport->add_handler("request_send", \&pp_dump );, http://cookbook.soaplite.com/, SOAP endpoint , Re^3: SOAP::Lite login setup, Re: I do not understand how to write a SOAP server., An XML Overview Towards Understanding SOAP, Re^3: SOAP::Lite and custom envelopes, The XML FIles: Understanding XML Namespaces, How to Call a .NET-based Web Service Using the SOAP::Lite Perl Library (2002 )
| [reply] |
It looks like there's no really easy way to do this...is there?
| [reply] |
| [reply] |
Ok, I got LWP via HTTPS working. I also have the XML to send. Next step...how do I put the SOAP wrapper around the XML payload and then send it via LWP?
| [reply] |
| [reply] [d/l] [select] |
First be sure that you successfully use LWP to make the HTTPS connection in the first place. Cross that bridge first, and be sure that you are on the other side. Then, one of the SOAP packages mentioned earlier should do the trick. The transfer should not care that it is HTTPS vs. HTTP. | [reply] |
Yes, the LWP stuff is what seems to be most confusing to me...I've never used that before.
| [reply] |