No los llamo desde una jsp, los llamo desde una aplicación mediante un metodo Post
así:
Código:
public boolean envioPost(){
httpcliente= new DefaultHttpClient();
// siendo ruta de tipo /servletLoquesea
HttpPost post = new HttpPost("http://192.168.1.106:8080/servidor"+ruta);
try {
post.setEntity(new UrlEncodedFormEntity(datos));
} catch (UnsupportedEncodingException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
return false;
}
try {
response = httpcliente.execute(post);
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
}
return true;
}
En la ruta va el servlet especifico al que deseo acceder ej: ruta="/servletSesion";