Error

Notice: Undefined property: stdClass::$forum_tid in forum_node_view() (line 275 of /home/wfrantz/www/sprintdevelopers/modules/forum/forum.module).

problem using MIDlet-Install-Notify

Submitted by Anonymous (not verified) on Wed, 08/31/2005 - 03:59

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