Hi Randy, Frank's right - it sounds like your server does not handle the "application/octet-stream" content type. In "traditional" uploads, the file is sent as multipart/form-data and you've probably got code that handles that already (Google if you haven't), but for "application/octet-stream" you just need to copy the data directly to disk.
You can find examples in the contrib: For Java: server/java/com/zenesis/qx/upload/DemoUploadServlet.java For PHP: server/php.php For Perl CGI: server/perl.cgi John On 17/10/2011 18:02, "randylb" <[email protected]> wrote: >I was able to get the upload working to the Zenesis server...I also >plugged >the zenesis server into the code for my application and the upload was >successful. I then changed line 79 in Application.js to point at my server >as suggested. No success there...I am still missing something in server >side >handling. > >The documentation suggests that the second parameter instantiating >UploadMgr >defines the action statement but after plugging in a number of debug >statements I am still not able to see where or how the upload file >information is passed to the php code. > >Thanks...Randy > >-- >View this message in context: >http://qooxdoo.678.n2.nabble.com/UploadMgr-connection-to-Backend-tp6886082 >p6901422.html >Sent from the qooxdoo mailing list archive at Nabble.com. > >-------------------------------------------------------------------------- >---- >All the data continuously generated in your IT infrastructure contains a >definitive record of customers, application performance, security >threats, fraudulent activity and more. Splunk takes this data and makes >sense of it. Business sense. IT sense. Common sense. >http://p.sf.net/sfu/splunk-d2d-oct >_______________________________________________ >qooxdoo-devel mailing list >[email protected] >https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity and more. Splunk takes this data and makes sense of it. Business sense. IT sense. Common sense. http://p.sf.net/sfu/splunk-d2d-oct _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
