• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

I am getting following error in the websphere.Please help

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
I am using JDK1.2.2 & the class java.util.PropertyResourceBundle is in the class path.This error has occured while using the jsp include which is having the following syntax:
"jsp:include page='/XYZ/pqr.jsp' flush='true'"
"jsp aram name='X' value='%=x%'/"
"jsp aram name='Y' value='%=y%'/"
"/jsp:include"
(As I can not use start of tag & end of tag symbol in the posting , they are absent in the example. Please consider that they are present properly.)
The jsp I am using is as follows :
"imports"
"% Beanclass bean = new Beanclass();
String x=(String)request.getParameter('X'));
process
}
%"
The HTML/JSP tags
I am getting following error :
Server caught unhandled exception from servlet [JSP 1.0 Processor]: Fatal Error: missing resource: java.util.PropertyResourceBundle
Error Code: 500
Target Servlet: JSP 1.0 Processor
Error Stack:
--------------------------------------------------------------------------------
Root Error-1: Fatal Error: missing resource: java.util.PropertyResourceBundle
java.lang.Error: Fatal Error: missing resource: java.util.PropertyResourceBundle
at com.sun.jsp.Constants.getString(Constants.java:66)
at com.sun.jsp.Constants.getString(Constants.java:53)
at com.sun.jsp.runtime.JspLoader.loadJSP(JspLoader.java:340)
at com.sun.jsp.runtime.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:166)
at com.sun.jsp.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:220)
at com.sun.jsp.runtime.JspServlet.serviceJspFile(JspServlet.java:912)
at com.sun.jsp.runtime.JspServlet.service(JspServlet.java:821)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:644)
at com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:160)
at com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:287)
at com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:105)
at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:371)
at com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:793)
at com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:719)
at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:632)
at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:290)
at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:189)
at com.ibm.servlet.engine.srt.WebAppInvoker.doForward(WebAppInvoker.java:61)
at com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:133)
at com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:67)
at com.ibm.servlet.engine.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:106)
at com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:160)
at com.ibm.servlet.engine.oselistener.OSEListenerDispatcher.service(OSEListener.java:300)
at com.ibm.servlet.engine.oselistener.SQEventListenerImp$ServiceRunnable.run(SQEventListenerImp.java:230)
at com.ibm.servlet.engine.oselistener.SQEventListenerImp.notifySQEvent(SQEventListenerImp.java:104)
at com.ibm.servlet.engine.oselistener.serverqueue.SQEventSource.notifyEvent(SQEventSource.java:216)
at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.notifyService(SQWrapperEventSource.java:354)
at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.run(SQWrapperEventSource.java:221)
at com.ibm.servlet.engine.oselistener.outofproc.OutOfProcThread$CtlRunnable.run(OutOfProcThread.java:248)
at java.lang.Thread.run(Thread.java:481)

I struggling for past twodays to find out what is the cause.
Can anyone tell e what is the cause.
Thanking you
Jhimi
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
just try importing the package in ur jsp file and check. <@ import ="java.util.*"> check the syntax according to the jsp norm and apply.
Hope that will solve the problem.
satya
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic