I have to extend an established web application which is using SOAP::WSDL to communicate with external SOAP servers. To get use of a new SOAP method I have to extend the application to handle cookies over the user session in the web application.
I like to use HTTP::CookieJar::LWP as cookie jar for LWP::UserAgent but I don't find any hints on how to replace the non(-persistent)-cookie-aware LWP from SOAP::WSDL with my own one which loads/stores SOAP cookies from/into the web application session. How to replace LWP handle from SOAP::WSDL?
$soap->get_client()->set_proxy($endpointurl,{cookiejar => $cookiejar})
. – user1937198