Hello Wilson,
> hc.getState().setCredentials(new
> AuthScope("https://www.foo.com/apps", 443),
That authentication scope does not make any sense.
Please read the JavaDocs:
http://jakarta.apache.org/commons/httpclient/apidocs/org/apache/commons/httpclient/auth/AuthScope.html
What you are passing as "host" is not a host at all.
Either register the default credentials with scope
AuthScope.ANY or use the constructor correctly:
new AuthScope("www.foo.com", 443)
hope that helps,
Roland
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]