The following error occurs when we try to dispatch a response to a JSP from a servlet and the weblogic server crashes with Dr. Watson error. A nonfatal internal JIT (3.10.107(x)) error 'Structured Exception(c0000005)' has occurred in : 'jsp_servlet/_shipserv/_jsp/_selectedvendor._jspService (Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletRespo nse;)V': Interpreting method. Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cgi However we are getting this error with only one set of servlet and jsp (the servlet code is given below) occurs while trying to forward the request/response objects. HttpSession session = request.getSession(false); //Do the business logic session.setAttribute("VECTOR",SelectedVector); System.out.println("after set attribute"); try{ System.out.println("before forward1"); RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/ShipServ/Jsp/test1.jsp"); dispatcher.forward(request,response); } catch (Exception ex) { ex.printStackTrace(); } any inputs?? regards raj ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
