Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Version: Windchill 12.1
Use Case: I'd like to add a link to our internal support portal on this page
Description:
Solved! Go to Solution.
I believe the JSP you want to customize is here:
codebase/wtcore/error.jsp
Make sure you back up and manage properly your modifications.
I believe the JSP you want to customize is here:
codebase/wtcore/error.jsp
Make sure you back up and manage properly your modifications.
Added an entry to codebase/WEB-INF/web.xml and restart
<!-- add it above any existing error-page entries in web.xml>
<error-page>
<exception-type>wt.session.SessionUsers$PreLoginException</exception-type>
<location>/wtcore/licensingError.jsp</location>
</error-page>
Created a new page (licensingError.jsp) to handle licensing issues
