Main Page
From jupload
Misc. Documentation and HOWTOs
Server-Side example code
Main wiki blocs:
Getting onboard using Netbeans 6.0 and Tomcat
I was having difficulty getting http://jupload.sourceforge.net/ to execute. I couldn't get the given PHP example to work. Using Netbeans 6.0 and Tomcat, I was able to get jupload.sourceforge.net to work using MIE and Firefox.
- Expand the JAR file. Move the orignal source under "Apache Tomcat 6.0.14\bin" and use it to make a Netbeans project that is a web application with existing source.
- Under properties, set the Web Pages folder to "wwwroot".
- In applet-basic.html, change the applet's "postURL" parameter from upload_dummy.php to pages/parseRequest.jsp.
- Windows users: In parseRequest.jsp, initialize ourTempDirectory to "C:/Temp/".
You could also use pages/writeOut.jsp. But replace ...
out.println("SUCCESSFUL : Upload Stream Saved to \"" + fileOut + "\".");
... with ...
out.println("SUCCESS");
