[opencms-dev] Weblogic .jsp.jsp problem and solution

Denham, Martin Martin.Denham at edfenergy.com
Wed Apr 7 13:17:02 CEST 2004


Hi,

I have seen this error mentioned a few times in this newsgroup:
<07-Apr-2004 11:46:14 o'clock BST> <Error> <HTTP> <BEA-101214> <Included resource or file "/opencms/jsp/online/system/modules/org.opencms.welcome/jsptemplates/welcome.jsp.jsp" not found from requested resource "/opencms/opencms/".>

Weblogic is confused by the .jsp.jsp extension.  The solution seems to be to map the .jsp.jsp extension to Weblogic's jsp processor in web.xml manually:

    <servlet>
        <servlet-name>JSPServlet</servlet-name>
        <description>Standard Weblogic JSP processor</description>
        <servlet-class>weblogic.servlet.JSPServlet</servlet-class>
    </servlet>
    
    <servlet-mapping>
        <servlet-name>JSPServlet</servlet-name>
        <url-pattern>*.jsp.jsp</url-pattern>
    </servlet-mapping>

regards

Martin


***********************************************************************************
EDF Energy plc internet e-mail disclaimer
This e-mail and any files transmitted with it are confidential and may be protected by legal privilege.
If you are not the intended recipient, please notify the sender and delete the e-mail from your system.
This e-mail has been scanned for malicious content but the internet is inherently insecure and EDF
Energy plc cannot accept any liability for the integrity of this message or its attachments. No employee
or agent of EDF Energy plc or any related company is authorised to conclude any binding agreement on
behalf of EDF Energy plc or any related company by e-mail. All e-mails sent and received by EDF Energy
plc are monitored to ensure compliance with the company's information security policy.
***********************************************************************************





More information about the opencms-dev mailing list