Re: [qooxdoo-devel] uploadMgr params question

2012-01-16 Thread Serg
Hi John, Thank for your help a lot - now i understand how it works. -- View this message in context: http://qooxdoo.678.n2.nabble.com/uploadMgr-params-question-tp7178934p7195443.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] uploadMgr params question

2012-01-16 Thread John Spackman
Hi Serg, Sorry for the delay in getting back to you; the form is submitted as a multipart request, which means that the normal request.getParameter does not work (this isn't special to UploadMgr it's just that the standard HttpServletRequest does not support parsing multipart). In multipart, data

Re: [qooxdoo-devel] uploadMgr params question

2012-01-13 Thread Serg
Thanks for reply. Does it mean that request.getParameter("myGlobalParam"); must work correctly in my case? I use example from "UploadMgr\trunk\server\java\com\zenesis\qx\upload\DemoUploadServlet.java", but i get NULL as a result. -- View this message in context: http://qooxdoo.678.n2.nabb

Re: [qooxdoo-devel] uploadMgr params question

2012-01-12 Thread John Spackman
.com, Web: >http://www.inform-software.com >INFORM Institut für Operations Research und Management GmbH >Registered AmtsG Aachen HRB1144 Gfhr. Adrian Weiler > >-Ursprüngliche Nachricht- >Von: Serg [mailto:b...@tut.by] >Gesendet: Donnerstag, 12. Januar 2012 09:41 >An: Rob

Re: [qooxdoo-devel] uploadMgr params question

2012-01-12 Thread Robert Nimax
Serg [mailto:b...@tut.by] Gesendet: Donnerstag, 12. Januar 2012 09:41 An: Robert Nimax; qooxdoo-devel@lists.sourceforge.net Betreff: [qooxdoo-devel] uploadMgr params question Hello! I'm trying to upload file on server using the uploadMgr. On the client side I can set some params:

[qooxdoo-devel] uploadMgr params question

2012-01-12 Thread Serg
Hello! I'm trying to upload file on server using the uploadMgr. On the client side I can set some params: var uploader = new com.zenesis.qx.upload.UploadMgr(btn, "http://localhost:8080/QxServer/qxserver";); uploader.setParam("myGlobalParam", "global123"); I also can set para