1

I am trying to install my application into Websphere7 app server (WTE) in localhost.

The ear file is deployed through the console, but it seems I am able to test the application in the browser after starting the server.
There is an index.jsp, but when I try to access that I keep getting the http 404 error (there is no error on the path because the app is running on another server), I must be missing a config file.

java.io.FileNotFoundException: JSPG0036E: Failed to find resource /utilities/pageerror.jsp
    at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionProcessor.findWrapper(AbstractJSPExtensionProcessor.java:395)
    at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionProcessor.handleRequest(AbstractJSPExtensionProcessor.java:349)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3944)
    at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:276)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:931)
    at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1592)
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
mi3
  • 581
  • 1
  • 7
  • 13

2 Answers2

1

I finally fixed it, the ear file was not built correctly

mi3
  • 581
  • 1
  • 7
  • 13
0

In a jazz.bet RTC context, you only have two threads mentioning this error:

I've already solved the problem just changing the browser default language to English instead of to leave it in Portuguese.

As the OP mi3 mentions, the root cause here was an invalid (incrrectly built) ear.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • I am using English and it seems that the server doesn't recognize my ear file, but I got the ear from our QA server where it is running fine. I am thinking there must be a config param missing somewhere. Any thoughts... under what circumstannces websphere won't recognise a deployed ear installed through its own admin console.... – mi3 Feb 09 '13 at 16:46
  • @mi3 not sure, but why did you tag the question with RTC? – VonC Feb 09 '13 at 17:03