Couldn't figure out why I'm getting Null pointer here : System.out.println(method.getStatusCode()); !? method initialized and successfully executed! Any ideas? Sample code here. I'm using commons-httpclient-3.1.jar

            PostMethod = new PostMethod(url);

        LogInHelper.logRequest(httpClient, method);

        try {
            httpClient.executeMethod(method);
            method.getResponseBodyAsString();
        } catch (HttpException e) {
            LOG.error("@getSessionId() error connecting to " + url, e);

        } catch (IOException e) {
            LOG.error("@getSessionId() error connecting to " + url, e);

        }

        LogInHelper.logResponse(method);

        System.out.println(method.getStatusCode());
link|improve this question

53% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Cleaning and recompile whole project helped in this case.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.