From: Andrew P. <an...@pi...> - 2004-10-20 18:58:17
|
On Tue, Oct 19, 2004 at 05:51:03PM -0700, Byrne Reese wrote: > Thank you so much for pointing this out to the development team. I know > it has been a while since you wrote this, but you and your input is not > forgotten. Thanks. FWIW, I've been doing basically what I described before in the meantime (the goal again was to use NTLM to authenticate to the SOAP server). 1. Download the WSDL file "by hand", and passing it to SOAP::Lite->service as a file:// URL. 2. Tell the LWP used for real SOAP calls to use NTLM with this horribly code: $soap->proxy($url, # this just needs the right hostname credentials => [ $host_port, '', '\\' . $windows_username, $windows_password ], conn_cache => LWP::ConnCache->new, ); I again look forward to getting rid of this hack with the new release! Andrew |