• 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

AppDispatch Controller servlet problem

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Weblogic 8.1
MVC Framework
Controller Servlet is called AppDispatch
which loads at startup and reads the appconfig.xml file and puts the action names into a HashTable for later use.

Section of appconfig.xml looks like this:


Navigating through the website, this call works fine and displays next jsp page:


However, this call is failing with HTTP 500 "Page cannot be displayed"



The exact same code works perfectly on my Windows pc (I do not get the HTTP error and I do get my ShippingInfo.jsp page), but I compile this application into an ear file and put it on our Sun server, it doesn't work.
I've seen something similar before where I was naming something in appconfig.xml with upper/lower case combo that didn't exactly match the actual file name; but this is not the case for this problem. I have checked and rechecked and the name of the jsp file is: ShippingInfo.jsp

There are no errors being thrown to the log. Just wondering if anybody has any suggestions for debugging this problem?

Also, I have confirmed via the logs that action "shippinginfo" does load when the server starts up.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic