Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within OCPJWCD
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
A Functional Approach to Java: Augmenting Object-Oriented Java Code with Functional Principles
this week in the
Functional programming
forum!
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
Liutauras Vilda
Ron McLeod
Jeanne Boyarsky
Paul Clapham
Sheriffs:
Junilu Lacar
Tim Cooke
Saloon Keepers:
Carey Brown
Stephan van Hulst
Tim Holloway
Peter Rooke
Himai Minh
Bartenders:
Piet Souris
Mikalai Zaikin
Forum:
Web Component Certification (OCEJWCD)
getting error code in pagenotfound.jsp
hasan khan
Ranch Hand
Posts: 223
I like...
posted 18 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
my web.xml looks like this
<error-page>
<error-code>404</error-code>
<location>/pagenotfound.jsp</location>
</error-page>
<error-page>
<error-code>403</error-code>
<location>/pagenotfound.jsp</location>
</error-page>
i have created a common page for 2 different error code.
i want to show different message for different error code.
in pagenotfound.jsp how can i find that what error code cause this page to be called ?
Nitish Bahadur
Ranch Hand
Posts: 118
posted 18 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Read the "javax.servlet.error.status_code" request attribute in your error page. This should be either 403 or 404.
In the real world, the web servers have pre-defined error pages for the HTTP Status codes between 300-400 and 400-500.
hasan khan
Ranch Hand
Posts: 223
I like...
posted 18 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
how do i use those pre-defined error pages for the HTTP Status codes between 300-400 and 400-500.
i am using weblogic 8.1 as well as
tomcat
5.0.28
SCJP, SCWCD
With a little knowledge, a
cast iron skillet
is non-stick and lasts a lifetime.
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Handling 404 Error
Please Help - Using JSF
problem using error-page tag
redirect if error 404 comes
How to configure custom error pages in jboss-5.1.0?
More...