DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25249>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25249

BasicAuthenticatonExample.java in CVS

           Summary: BasicAuthenticatonExample.java in CVS
           Product: Commons
           Version: 2.0 Milestone 2
          Platform: All
               URL: http://cvs.apache.org/viewcvs.cgi/*checkout*/jakarta-
                    commons/httpclient/src/examples/BasicAuthenticationExamp
                    le.java?content-type=text%2Fplain&rev=1.1.2.1
        OS/Version: All
            Status: NEW
          Severity: Minor
          Priority: Other
         Component: HttpClient
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


>From the example in CVS Revision 1.1.2.1 the code below would lead you to 
belive that setCredentials uses ("HOST", "REALM", credientials). It actually 
should be ("REALM", "HOST", credientials). It looks like it was correct in the 
Revision 1.1 and was changed with Revision 1.1.2.1

// pass our credentials to HttpClient, they will only be used for
// authenticating to servers with realm "realm", to authenticate agains
// an arbitrary realm change this to null.
client.getState().setCredentials(
            "www.verisign.com",
            "realm",
            new UsernamePasswordCredentials("username", "password")
);

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to