Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem in showDocument(URL,target) thru applet context

Status
Not open for further replies.

prasannatatti

Programmer
Apr 4, 2005
1
DE
I need to launch a JSP page from applet. I use showDocument(URL,target) method provided in applet context class. The URL "/MyApp/do/Logon" has appropriate values (actions, action mapping..) set in struts-config.xml file as

<action
name="mainForm"
path="/Main"
type="com.main.MainAction"
scope="session"
input="/jsp/Main.jsp">
<forward name="MainPage" path="/jsp/Main.jsp"/>
</action>

<action name="myForm" type="com.mylist.MyAction"
scope="session"
path="/MyList">
<forward name="MainPage" path="/do/Logon"/>
</action>

Despite the correct values set in struts-config.xml file I am unable to load the Main.jsp page thru applet.

Thanks in Advance.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top