in reply to SOAP XML Request over HTTPS

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 )

Replies are listed 'Best First'.
Re^2: SOAP XML Request over HTTPS
by jcagle (Acolyte) on Dec 10, 2014 at 15:49 UTC
    It looks like there's no really easy way to do this...is there?

      It looks like there's no really easy way to do this...is there?

      LOL

Re^2: SOAP XML Request over HTTPS
by jcagle (Acolyte) on Dec 11, 2014 at 15:08 UTC
    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?