[java ee programming] unsubscribe me

2009-08-18 Thread Kret Try
please unsubscribe me --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Passion!" group. To post to this group, send email to java-ee-j2ee-programming-with-passion@googlegroups.com To uns

[java ee programming] Re: access denied problem

2009-08-18 Thread Vikram Bhushan
hi friends , regarding acess denied problem If any one got yhis problem in any one of the home work project while opening project in netbean ide What you have to do is in the properties Dselect the read only file. Vikram On Sun, Aug 16, 2009 at 1:20 PM, Vikram Bhushan wrote: > Hi friends , >

[java ee programming] Re: How to re use the HTTP URL Connection

2009-08-18 Thread Gao Lin
Hi The Servlet servers to execute any SQL and writes result back, so the request maybe a very complicated SQL, that is why the POST method should be used, because there is a limitation of the GET method on the length of request. And it is possible that clients access the Servlet very frequently,

[java ee programming] How to re use the HTTP URL Connection

2009-08-18 Thread Gao Lin
Hi I want to re use the same HttpURLConnection instance to send different request to the same Servlet, does any body know how to do that? here is my testing code: URL url = new URL("http://localhost:8080/test/echo";); HttpURLConnection connection = (HttpURLConnection)url.openCon