Quick question: why did you enable "crossDomain" for your call? I guess
this might cause problems in your case.

Try this:
--- snip ---
var req = new qx.io.remote.Request(
   "http://localhost/qooxdoo/test.php";,
   "GET",
   "text/plain"
);

req.setParameter("suche", "hallo ich komme von Application.js");
req.addListener("completed", function(e){
   te.setValue("Test: " + e.getData());
});
req.send();
--- snap ---


-Steffen- wrote:
> Ok so I am not completely out of line (thank god). My Problem ist still
> present. When I open the test.php in a browser I get an empty String "" (as
> intended). When called like this
> http://localhost/qooxdoo/test.php?suche="TEST"; i get the following:
> "\\\"TEST\\\""

------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to