• 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
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Error 404: javax.servlet.UnavailableException: SRVE0203E: Servlet [/adhocFileMvServer.jsp]:

 
Greenhorn
Posts: 26
Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am getting the following error while loading a jsp in IBM Websphere 6.0 application server. The Jsp is complied successfully and the jsp class file is present in the temp path. but even I am getting the following error.

Error 404: javax.servlet.UnavailableException: SRVE0203E: Servlet [/adhocFileMvServer.jsp]: com.ibm._jsp._adhocFileMvServer was found, but is missing another required class. SRVE0206E: This error typically implies that the servlet was originally compiled with classes which cannot be located by the server. SRVE0187E:
This is my JSP Code where I am calling some java classes.
 
Ranch Hand
Posts: 44
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It seems one of files is missing which you are using as in import or some jar library is missing.

check the following link

http://stackoverflow.com/questions/12496492/javax-servlet-unavailableexception-after-an-upgrade-to-was-7
 
Barnabas Jeremiah
Greenhorn
Posts: 26
Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Rajat Jindal wrote:It seems one of files is missing which you are using as in import or some jar library is missing.

check the following link

http://stackoverflow.com/questions/12496492/javax-servlet-unavailableexception-after-an-upgrade-to-was-7



I got the solution. actually the compiled jsp class file was not loaded since the usergroups were different for the webcontend and for the temp folder where the class files placed while compilation.
changed the usergroup and deleted the temp folder and restarted the server.
 
Barnabas Jeremiah
Greenhorn
Posts: 26
Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It is solved. it is because of the group diffence of the jsp. jsp is in a different group and the compiled jsp classes are in different group. I have changed the ownership of the file and restarted the IBM WebSphere Server using wasadmin and it works.


Barnabas Jeremiah wrote:Hi,
I am getting the following error while loading a jsp in IBM Websphere 6.0 application server. The Jsp is complied successfully and the jsp class file is present in the temp path. but even I am getting the following error.

Error 404: javax.servlet.UnavailableException: SRVE0203E: Servlet [/adhocFileMvServer.jsp]: com.ibm._jsp._adhocFileMvServer was found, but is missing another required class. SRVE0206E: This error typically implies that the servlet was originally compiled with classes which cannot be located by the server. SRVE0187E:
This is my JSP Code where I am calling some java classes.

 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic