Hi all,

I send a remote request (qx.io.remote.Request) to a Java-Servlet. The
Servlet works fine, all parameters pass and as I can see in Firebug, the
response is correct.
The Servlet create an Excel-sheet with given headers and a
Hibernate-query.

The response is type of "application/vnd.ms-excel" and normally the
browser should ask the user if he would save or open the response. I
don't know how to implement this in a qooxdoo application maybe someone
could help here.

I send the request like this:

var req = new qx.io.remote.Request("/qooxdooBackend/.sylk", "GET",
"text/plain");
req.setParameter("headers", this.columns[0]);
req.setParameter("hql", this.hql);
req.addEventListener("completed", function(res) {
  //alert(res.getContent());
});
req.send();

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to