Posted By:
shailaja_baliga
Posted On:
Wednesday, October 10, 2001 09:56 AM
Yes it is possible to call a servlet from J2ME.
For eg :
HttpConnection c;
c = (HttpConnection)
Connector.open("http://www.java.sun.com/MyServlet"); //the servlet URL
c.setRequestMethod(HttpConnection.GET);
//set the type of servlet method HTTP GET/POST method.