Skip to Main Content

APEX

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!

How to integrate jsp script in Apex app?

user641914Jan 9 2012 — edited Jan 9 2012
I want to integrate the following jsp script in a page.
I have tried to place it in an html region and in a page header but all what I get is the plain code showing in the rendered page: the scriptlet is not executed.

What can I do to have the correct messages displayed in the page?

Thank you,
Alessandro, Milan

(Code sample: courtesy Skillbuilder.com)
<%@ page import='java.*'%>

<%
if(request.getParameter("name") == null) {
out.println("You must supply a name!");
}
else {
out.println("Greetings, " + 
request.getParameter("name"));
}
%>
Edited by: user641914 on 9-gen-2012 1.42

Edited by: user641914 on 9-gen-2012 1.44

Edited by: user641914 on 9-gen-2012 1.51

Edited by: user641914 on 9-gen-2012 2.15

Edited by: user641914 on 9-gen-2012 2.16
This post has been answered by fac586 on Jan 9 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 6 2012
Added on Jan 9 2012
1 comment
955 views