in reply to Re^2: SOAP XML Request over HTTPS
in thread SOAP XML Request over HTTPS

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?

Oh boy :) See Re: SOAP XML Request over HTTPS, look inside the modules like for example https://metacpan.org/source/IVANWILLS/W3C-SOAP-0.10/lib/W3C/SOAP/Client.pm

sub post { my ($self, $action, $xml) = @_; my $url = $self->location; cluck "The mech attribute has been deprecated and is replaced by u +a attribute!" if $self->has_mech; $self->clear_response; my $response = $self->ua->post( $url, 'Content-Type' => $self->content_type, 'SOAPAction' => qq{"$action"}, 'Proxy-Connection' => 'Keep-Alive', 'Accept-Encoding' => 'gzip, deflate', Content => $xml->toString, ); $self->response($response); return $response->decoded_content; }

 $self->ua is LWP::UserAgent object ... or it can be a WWW::Mechanize (more convenient)

This is like low level SOAP, good luck to you :)