Thank you for reply. :)
We have tried to trace issue but we stuck at following code and each time Glassfish4 returning me http 500 error.
public void dispatchRequest( HttpServletRequest oRequest, HttpServletResponse oResponse )
throws IOException
{
try
{
// fire the preResolution interceptor
dispatchInterceptors_preResolution( oRequest, oResponse );
// first try to resolve the request to a controller
if ( ! dispatchControllerRequest( oRequest, oResponse ) )
{
// try to dispatch the request to a view
if ( ! dispatchViewRequest( oRequest, oResponse ) ) // NOT ABLE TO FIND VIEW AT THIS POINT, dispatchViewRequest WILL RETURN FALSE
{
// even if we did not resolve to a contoller or view since we attempted resolution,
// we fire the postResolution interceptor
dispatchInterceptors_postResolution( oRequest, oResponse, null, null );
throw new StopRequestProcessingSignal( "dispatch-request",
"Request did not resolve to a controller or view, path > "
+ oRequest.getPathInfo() );
}
}
}
catch ( StopRequestProcessingSignal oSignal )
{
if ( oSignal.isError() )
{
logAndRespond( oResponse, oSignal );
}
}
}
We are not getting this error with JDK6 (64bit/32bit).