What's the equivalent HttpClient Java code for this Dispatch Scala?

344 views Asked by At
import dispatch._
val h = new Http
val req = url(url).as_!(username, password)
val handler = req << (payload, "application/xml") >:> identity
handler.apply { 
    case (200, _, Some(entity), _) => (200, Some(entity))
    case (status, _,_,_) => (status, None)
}
val response = h(handler)

I've tried this:

public static void postService(Profile user, String subject, String body){
    Credentials credentials = new UsernamePasswordCredentials(userName, authToken);
    AuthScope authScope = new AuthScope(baseUrl, 80, AuthScope.ANY_REALM);
    HttpClient client = new HttpClient();
    PostMethod post = new PostMethod(baseUrl);

    client.getParams().setAuthenticationPreemptive(true);
    client.getState().setCredentials(authScope, credentials);

    String payload = makePayload(user, subject, body);
    RequestEntity entity = null;
    try{
        entity = new StringRequestEntity(payload, CONTENT_TYPE, null);
    } catch(UnsupportedEncodingException e){
        e.printStackTrace();
    }
    post.setRequestEntity(entity);

    try{
        client.executeMethod(post);
    } catch(IOException e){
        e.printStackTrace();
    } catch(HTTPException e){
        e.printStackTrace();
    }
}

UPDATED - SOLVED: This was a misunderstanding of AuthScope. I figured it out, basically I was passing in the entire url w/protocol i.e. "https://mysite.com" rather than just "mysite.com" I resolved this issue.

1

There are 1 answers

0
prafulfillment On BEST ANSWER

This was a misunderstanding of AuthScope. I figured it out, basically I was passing in the entire url w/protocol i.e. "https://mysite.com" rather than just "mysite.com" I resolved this issue.