Hi, I created a form panel, I can upload file and I want to send a
hidden field also via HTTP request.
My file upload parses the request and succesffully uploads. How can I
parse http request for my hidden field in the same class on the server
side?

//UPLOAD CODE
 FileItemFactory factory = new DiskFileItemFactory();

            // Create a new file upload handler
           ServletFileUpload upload = new ServletFileUpload(factory);

            // Parse the request
           try {
                 List<FileItem> items = upload.parseRequest(req);

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to