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

EJP
That's not a correct description. The question is why is a variable rendering differently in different places. Where the value came from isn't actually relevant.

I suggest you have a look at the generated Java code.
859702
Yes, you are right.

But why does the same variable is rendering differently at different places?

I printed the variable at each place using System.out.println, it printed same for three places. Yet, in generated HTML, it is different.

Is this related to <applet> and <param> tag?
EJP
The applet/param tags shouldn't have anything to do with it. What does the generated source code look like?
859702
Generated source is like this....

<APPLET CODE = "EmbeddedViewerApplet.class" CODEBASE = "/a/b/applets" ARCHIVE = "ReportApplet.jar" WIDTH = "100%" HEIGHT = "90%"></XMP>
<PARAM NAME = CODE VALUE = "EmbeddedViewerApplet.class" >
<PARAM NAME = CODEBASE VALUE = "/b/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 ="/b/GetJasperPrintObject">
</APPLET>
EJP
No it isn't. That's the XHTML. I'm talking about the Java code.
User_64CKJ
856699 wrote:
Generated source is like this....

<APPLET CODE = "EmbeddedViewerApplet.class" CODEBASE = "/a/b/applets" ARCHIVE = "ReportApplet.jar" WIDTH = "100%" HEIGHT = "90%"></XMP>
What is the <tt></XMP></tt> doing in there?
1 - 6
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
297 views