Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
     try {      
        //Create connection   
                   url = new URL("SOME URL");           
        connection = (HttpURLConnection)url.openConnection();      
        connection.setRequestMethod("POST"); 

        connection.setRequestProperty("Content-Type","application/x-www-form-urlencoded");

        connection.setDoOutput(true);

But still this code invokes only the GET method of servlet. can any one please suggest me the answer?

share|improve this question
please show more code. I've tried your code and the POST method successfully called. – user179437 May 6 '11 at 16:53

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.