View Single Post
  #4 (permalink)  
Old 10-07-2008, 10:23 AM
bhupendrabjain bhupendrabjain is offline
Member
 
Join Date: Oct 2008
Posts: 3
bhupendrabjain is on a distinguished road
Hi
For your reference i will show you my jsp code
<html>
<head>
<title>Simfonie Bulk Upload Applet</title>
</head>
<body>
<h1><b>Simfonie Bulk Upload Applet<b></h1>
<hr>
<jsplugin type="applet" code='net.sf.jftp.JFtpApplet' codebase="<%= request.getContextPath() %>/module/fs/bulklib"
width="250"
height="50"
archive="sjftp_mod.jar">
</jsplugin>
</body>
</html>

My sjftp_mod.jar is in the bulklib folder but using java plug-in is always giving me this error
ServletException in '/module/fs/jsp/fsBulkUpload.jsp': /module/fs/jsp/fsBulkUpload.jsp(8,69) attribute for %>" is not properly terminated

I am able to run it using the following in my jsp
<applet java_codebase="<%= request.getContextPath() %>/module/fs/bulklib"
archive='sjftp_mod.jar' code='net.sf.jftp.JFtpApplet' height=500
width=500></applet>
Reply With Quote