Hello Saminda, > My Question : Is there any API available in httpclient, that gives me > the opportunity to Extract the Authorization header and decode the > base64 text to get plain password and username in server side.
HttpClient uses commons-codec for Base64 handling: http://jakarta.apache.org/commons/codec/ Splitting the header value into uid/pwd after decoding is easily achieved with the methods in java.lang.String. hope that helps, Roland --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
