Java Proxy Servlet for submitting files

Posted by KevMo on Stack Overflow See other posts from Stack Overflow or by KevMo
Published on 2010-03-18T16:56:42Z Indexed on 2010/03/22 18:51 UTC
Read the original article Hit count: 433

Filed under:
|
|
|
|

I'm attempting to use Panda with my GWT application. I can upload videos directly to my panda server using

POST MY_PANDA_SERVER/videos/MY_VIDEO_ID/upload

However I would like hide my panda server behind my J2EE (glassfish) server. I would like to achieve this:

  1. Start upload to some servlet on my J2EE server
  2. Authenticate user
  3. POST the file to my panda server while still uploading to servlet

Ideally I would like to never store the file on the J2EE server, but just use it as a proxy to get to the panda server.

© Stack Overflow or respective owner

Related posts about gwt

Related posts about java