Hi Enes, I suppose you're not google.de...
So your script tries to make a request to a domain which is not the domain it was loaded from, a so called cross domain request. Please read up on this topic in the mailing list, and the docs, and watch out for the "crossDomain" property of the qx.io.remote.Request object. HTH Greetings, Stefan On 08.01.2011 09:04, [email protected] wrote: > > Hi Derrell, > > i know the reason of the problem. I forgot to write a new before class name > Before : > var req = qx.io.remote.Request("www.google.de", "GET", "text/plain"); > > After : > var req = new qx.io.remote.Request("www.google.de", "GET", "text/plain"); > > The error message mentioned above comes from firebug. > > > But I have another problem. :-) > > var req = new qx.io.remote.Request("http://www.google.de", "GET", > "text/plain"); > req.addListener("completed", function(e) { > alert("OK : " + e.getContent()); > }); > req.addListener("failed", function(e) { > alert("FAILED : " + e.getStatusCode()); > }); > req.send(); > > I always get a FAILED messages with status code 0. > Does anyone knows the reason ? > > With kind regards, > Enes ------------------------------------------------------------------------------ Gaining the trust of online customers is vital for the success of any company that requires sensitive data to be transmitted over the Web. Learn how to best implement a security strategy that keeps consumers' information secure and instills the confidence they need to proceed with transactions. http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
