Hi,
Well I have a CGI task in which i call a servlet. The workflow got stuck when I ran it . When i hit the url for the servlet (
http://TS-servername/iw-cc/servletname) , i got an exception "java.lang.NumberFormatException: null
".
This I presume is happening when i try to retreive the taskid .
My code for the task id is :
String taskid = request.getParameter("task_id");
CSTask task = client.getTask(Integer.parseInt(taskid));
Is the "task_id" parameter incorrect? Do i need to pass it as "taskid"?
Please guide me on this
Regards,
Mav