| Author |
URLConnection writing problem
|
moneer mohammed
Ranch Hand
Joined: Feb 18, 2005
Posts: 66
|
|
Hi
i am try to write some data to the servlet but no data going and when i put same address in browser it working but from my programme the servlet not receiving any request
import java.io.*;
import java.net.*;
public class test {
public static void main(String[] args) {
URL url;
try {
url = new URL("http://localhost:8080/xxxx/ReconciliationReport");
URLConnection connection = url.openConnection();
connection.setDoOutput(true);
connection.connect();
OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream());
writer.write("testToSend");
writer.flush();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
|
java_just
|
 |
Imran Akbar
Ranch Hand
Joined: May 06, 2010
Posts: 63
|
|
does it throw any Exception? could you please elaborate?
|
 |
moneer mohammed
Ranch Hand
Joined: Feb 18, 2005
Posts: 66
|
|
|
sorry i forgot to say i am not getting any exception
|
 |
Imran Akbar
Ranch Hand
Joined: May 06, 2010
Posts: 63
|
|
Look on the below thread it has the solution for your question
http://www.coderanch.com/t/494979/sockets/java/Working-HttpsURLConnection
|
 |
 |
|
|
subject: URLConnection writing problem
|
|
|