Make a URL active from servlet
Hi,
I have a small problem to activate an HTTP URL from my Servlet.
This url is a link fior sending message so all what i want to do is to access it and activate it. I don磘 need to write or read anything from that server.
Any suggestions how to make it?
Thanks,
zizozine
[307 byte] By [
zino80a] at [2007-10-2 18:41:45]

Hi BIJ001,
Thanks for the reply:)
I have this peace of code for that reason but it seems to be not working
URL url = new URL(send_message);
URLConnection con = (HttpURLConnection) url.openConnection();
con.setDoOutput(true);
con.connect();
Does it need something more?
Thanks,