peter
Posts: 1
Nickname: medatou
Registered: Jul, 2002
|
|
how to access japplet from jsp in j2ee server
|
Posted: Jul 23, 2002 2:55 AM
|
|
|
Advertisement
|
hi, i want to access from http://myDomain (C:\Apps\j2sdkee1.3.1\public_html\ngnContextRoot\index.jsp) to an applet ChatRooms.java (C:\Apps\j2sdkee1.3.1\public_html\ngnContextRoot\chatapp\chatClient\ChatRooms). The code is as follow: <jsp:plugin type="applet" code="chatapp.chatClient.ChatRooms.class" codebase="." jreversion="1.3" align="center" width="100%" height="320" nspluginurl="http://java.sun.com/products/plugin/1.3.0_01/plugin-i nstall.html" iepluginurl="http://java.sun.com/products/plugin/1.3.0_01/jinstall- 130_01-win32.cab#Version=1,3,0,1" > <jsp:params> <jsp:param name="fname" value="<%=(String)session.getAttribute(NmConstant.SESSION_FIRSTNAME)%>"/& gt; <jsp:param name="lname" value="<%=(String)session.getAttribute(NmConstant.SESSION_LASTNAME)%>"/&g t; <jsp:param name="fgcolor" value="<%=sessionDisplayColor%>" /> </jsp:params> <jsp:fallback> <p>Unable to start plugin.</p> </jsp:fallback> </jsp:plugin>
I tried many times but failed. Could some gurus give me help?
thanks, medatou
|
|