Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Clueless on request.getContextPath()

859702Aug 29 2011 — edited Aug 31 2011
Hi, I am invoking the applet in a jsp as shown

<%
String contextPath=request.getContextPath();
%>


<APPLET CODE = "EmbeddedViewerApplet.class" CODEBASE = "<%=contextPath%>/applets" ARCHIVE = "ReportApplet.jar" WIDTH = "100%" HEIGHT = "90%"></XMP>
<PARAM NAME = CODE VALUE = "EmbeddedViewerApplet.class" >
<PARAM NAME = CODEBASE VALUE = "<%=contextPath%>/applets" >
<PARAM NAME = ARCHIVE VALUE = "ReportApplet.jar" >

<PARAM NAME="type" VALUE="application/x-java-applet;version=1.2.2">
<PARAM NAME="scriptable" VALUE="false">
<PARAM NAME = "REPORT_URL" VALUE ="<%=contextPath%>/GetJasperPrintObject">

</APPLET>


My server is running at the instance/context http://server/a/b where b is the context name

However, When I see the rendered HTML, the contextPath is printed with difference

At first line, it rendered /a/b/applets
At subsequent lines, it just printed /b/applets and /b/GetJasperPrintObject


Can you guys help in finding the error/problem with the code? Why is that the request.getContextPath() iis printing differently at different places?

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 28 2011
Added on Aug 29 2011
6 comments
291 views