Here is my code
invoke(String url){
HttpURLConnection urlCon = null;
urlCon = (HttpURLConnection) new URL(url).openConnection();
urlCon.connect();
return urlCon.getResponseCode();
}
**"Unexpected end of file from server"**
I got error message like this when i try to pass the url of the jsp file like this (http://kart3:7890/sample/sample.jsp) can u tell me am i miss anything