Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

I am trying to access an NTLM protected web service that is running on a Windows Server 2003 IIS 6 web server. Below is some sample code and the error output that I am getting.

# sample_code.pl use strict; use warnings; use LWP::UserAgent; use LWP::Debug; use SOAP::Lite on_action => sub { "$_[0]$_[1]"; }; LWP::Debug::level('+'); SOAP::Lite->import(+trace => 'all'); our $domain = 'MYDOMAIN'; our $username = 'MYDOMAIN\\Username'; our $password = 'password'; our $webserver = "my.server.com"; our @ua_args = (keep_alive => 1); our @credentials = ($domain, "", $username, $password); our $soap = SOAP::Lite->proxy('https://' . $webserver . '/gsoap/gsoap_ssl.dll?ttwebservices', @ua_args, credentials => \@cred +entials); $soap->uri("urn:ttwebservices"); # call the function for GetVersion our $som = $soap->GetVersion(); print "\n " . $som->valueof('//GetVersionResponse/return') . "\n";

The output is ...

SOAP::Lite::new: () LWP::UserAgent::new: () SOAP::Transport::HTTP::Client::new: () SOAP::Lite::call: () SOAP::Serializer::envelope: () SOAP::Serializer::envelope: GetVersion SOAP::Data::new: () SOAP::Data::new: () SOAP::Data::new: () SOAP::Data::new: () SOAP::Transport::HTTP::Client::send_receive: HTTP::Request=HASH(0x1c96 +d64) SOAP::Transport::HTTP::Client::send_receive: POST https://my.server.co +m/gsoap/gsoap_ssl.dll?ttwebservices Accept: text/xml Accept: multipart/* Content-Length: 447 Content-Type: text/xml; charset=utf-8 SOAPAction: urn:ttwebservicesGetVersion <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xsi="ht +tp://www.w3.org/1999/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- +ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/1999/XMLSchema" SOAP-ENV:encodingStyle="h +ttp://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><namesp1:Get +Version xmlns:namesp1="urn:ttwebservices"/></SOAP-ENV:Body></SOAP-ENV:Envelope +> LWP::UserAgent::request: () LWP::UserAgent::send_request: POST https://my.server.com/gsoap/gsoap_s +sl.dll?ttwebservices LWP::UserAgent::_need_proxy: Not proxied LWP::Protocol::http::request: () LWP::Protocol::collect: read 758 bytes LWP::Protocol::collect: read 798 bytes LWP::Protocol::collect: read 100 bytes LWP::Protocol::http::request: Keep the http connection to my.server.co +m:443 LWP::UserAgent::request: Simple response: Unauthorized LWP::Authen::Ntlm::authenticate: authenticate() has been called Use of uninitialized value in exists at c:\Perl\lib/LWP/UserAgent.pm l +ine 574. LWP::Authen::Ntlm::authenticate: No username and password available fr +om get_basic_credentials(). Returning unmodified response object SOAP::Transport::HTTP::Client::send_receive: HTTP::Response=HASH(0x1f0 +5e90) SOAP::Transport::HTTP::Client::send_receive: HTTP/1.1 401 Unauthorized Date: Tue, 28 Oct 2008 12:37:47 GMT Server: Microsoft-IIS/6.0 WWW-Authenticate: Negotiate WWW-Authenticate: NTLM WWW-Authenticate: Basic realm="my.server.com" Content-Length: 1656 Content-Type: text/html Content-Type: text/html; charset=Windows-1252 Client-Date: Tue, 28 Oct 2008 12:37:46 GMT Client-Peer: 193.173.39.39:443 Client-Response-Num: 1 Client-SSL-Cert-Issuer: /O=VeriSign Trust Network/OU=VeriSign, Inc./OU +=VeriSign International Server CA - Class 3/OU=www.verisign.com/CPS I +ncorp.by Ref. LIABILITY LTD.(c)97 VeriSign (NOTE---Sensitive information removed by perlchild) Client-SSL-Cipher: RC4-MD5 Client-SSL-Warning: Peer certificate not verified Client-Warning: Unsupported authentication scheme 'negotiate' Title: You are not authorized to view this page X-Powered-By: ASP.NET <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/T +R/html4/strict.dtd"><HTML><HEAD><TITLE>You are not authorized to view + this page</TITLE><META HTTP-EQUIV="Content-Type" Content="text/html; charse +t=Windows-1252"><STYLE type="text/css"> BODY { font: 8pt/12pt verdan +a } H1 { font: 13pt/15pt verdana } H2 { font: 8pt/12pt verdana } A:link { color: re +d } A:visited { color: maroon }</STYLE></HEAD><BODY><TABLE width=500 + border=0 cellspacing=10><TR><TD><h1>You are not authorized to view this page</h +1>You do not have permission to view this directory or page using the + credentials that you supplied because your Web browser is sending a WWW-Authenticate he +ader field that the Web server is not configured to accept.<hr><p>Ple +ase try the following:</p><ul><li>Contact the Web site administrator if you believ +e you should be able to view this directory or page.</li><li>Click th +e <a href="javascript:location.reload()">Refresh</a> button to try again wi +th different credentials.</li></ul><h2>HTTP Error 401.2 - Unauthorize +d: Access is denied due to server configuration.<br>Internet Information Services ( +IIS)</h2><hr><p>Technical Information (for support personnel)</p><ul> +<li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product S +upport Services</a> and perform a title search for the words <b>HTTP< +/b> and <b>401</b>.</li><li>Open <b>IIS Help</b>, which is accessible in IIS M +anager (inetmgr), and search for topics titled <b>About Security</b>, + <b>Authentication</b>, and <b>About Custom Error Messages</b>.</li></u +l></TD></TR></TABLE></BODY></HTML> SOAP::Deserializer::deserialize: () SOAP::Parser::decode: () 401 Unauthorized at sample_code.pl line 25 SOAP::Data::DESTROY: () SOAP::Data::DESTROY: () SOAP::Data::DESTROY: () SOAP::Lite::DESTROY: () SOAP::Deserializer::DESTROY: () SOAP::Transport::DESTROY: () SOAP::Transport::HTTP::Client::DESTROY: () SOAP::Serializer::DESTROY: () SOAP::Data::DESTROY: () SOAP::Parser::DESTROY: () SOAP::Transport::DESTROY: () SOAP::Serializer::DESTROY: () SOAP::Deserializer::DESTROY: () SOAP::Lite::DESTROY: ()

From the output it looks like the credentials that I pass to the soap->proxy call are not being used properly in the LWP calls.

I really don't understand how SOAP::Lite and LWP work together so I don't know how to implement this the correct way. I have searched all the docs on all the packages used in this script as well as all the info I could find on the internet and this site, which is not very much, and can't find a reliable implementation using SOAP::Lite, and the NTLM package. Maybe a perlmonk expert can help me with this problem.


In reply to NTLM Authentication with SOAP::Lite not working by perlchild

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (6)
As of 2024-03-28 16:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found