Hi,
In Jad file of my application has the link of
MIDlet-Install-Notify: some url
In the end of installation process it calls to that url ( as my server log contains this call and log the userid ), but then the installation process goes into not responding state.
install notify servelet has the following code
//Process the HTTP Get request
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String userId = request.getParameter("userid");
if (userId == null) {
userId = "";
}
logger.info("application download by user -----> " + userId);
}
when i remove MIDlet-Install-Notify from JAD, then application installed and run successfully.
Can anyone help me.
thanx in advance
shahzad