Re: [qooxdoo-devel] POST and GET ... not really

2010-06-16 Thread Ilkka Oksanen
On Tue, Jun 15, 2010 at 5:20 PM, b a wrote: > Hi Ilkka, > > On 6/15/10, Ilkka Oksanen wrote: > > Hi, > > > > On Tue, Jun 15, 2010 at 3:21 PM, b a wrote: > > > >> Hi, > >> > >> I started writing something with qooxdoo and I also wrote a server > >> so that the qooxdoo app communicates with that.

Re: [qooxdoo-devel] POST and GET ... not really

2010-06-16 Thread Peter Schneider
Hi, I don't know _exactly_ the reason for this, but I have a kind of "fix". Whenever I remove the port-part (8124) from the URL it works. So this: var req = new qx.io.remote.Request( "http://127.0.0.1";, "POST", "application/json"); req.send(); issues a POST (acc

Re: [qooxdoo-devel] POST and GET ... not really

2010-06-15 Thread b a
Jean, I am using firefox 3.6.3 On 6/15/10, Jean-Baptiste BRIAUD -- Novlog wrote: > Hi, > > What browser are you using ? > I've seen (with surprise) HTTP OPTIONS with Opera. > > What is your backend ? > In Java servlet, you can redefine service method so you don't have to bother > with outdated HT

Re: [qooxdoo-devel] POST and GET ... not really

2010-06-15 Thread b a
Got OPTIONS in firebug too. yes I am not the only one, actually I can say that I've seen this issue on stackoverflow and there it was suggested that the person use JSONP instead of JSON. I do not understand how this could solve such a problem. From what I have read the OPTIONS request method is ne

Re: [qooxdoo-devel] POST and GET ... not really

2010-06-15 Thread b a
Dear Jean, my backend is Node.js On 6/15/10, Jean-Baptiste BRIAUD -- Novlog wrote: > Hi, > > What browser are you using ? > I've seen (with surprise) HTTP OPTIONS with Opera. > > What is your backend ? > In Java servlet, you can redefine service method so you don't have to bother > with outdated

Re: [qooxdoo-devel] POST and GET ... not really

2010-06-15 Thread b a
Hi Ilkka, On 6/15/10, Ilkka Oksanen wrote: > Hi, > > On Tue, Jun 15, 2010 at 3:21 PM, b a wrote: > >> Hi, >> >> I started writing something with qooxdoo and I also wrote a server >> so that the qooxdoo app communicates with that. >> >> In qooxdoo I made a POST request like this >> >>

Re: [qooxdoo-devel] POST and GET ... not really

2010-06-15 Thread Ilkka Oksanen
Hi, On Tue, Jun 15, 2010 at 3:21 PM, b a wrote: > Hi, > > I started writing something with qooxdoo and I also wrote a server > so that the qooxdoo app communicates with that. > > In qooxdoo I made a POST request like this > >var req = new qx.io.remote.Request( >

Re: [qooxdoo-devel] POST and GET ... not really

2010-06-15 Thread Petr Kobalíček
This is interesting, because if I remember correctly then you are not first with the issue. What firebug says? On Tue, Jun 15, 2010 at 2:21 PM, b a wrote: > Hi, > > I started writing something with qooxdoo and I also wrote a server > so that the qooxdoo app communicates with that. > > In qooxdoo

Re: [qooxdoo-devel] POST and GET ... not really

2010-06-15 Thread Jean-Baptiste BRIAUD -- Novlog
Hi, What browser are you using ? I've seen (with surprise) HTTP OPTIONS with Opera. What is your backend ? In Java servlet, you can redefine service method so you don't have to bother with outdated HTTP actions like GET, POST, OPTIONS and some other amazing one. On 15 juin 2010, at 14:21, b a w

[qooxdoo-devel] POST and GET ... not really

2010-06-15 Thread b a
Hi, I started writing something with qooxdoo and I also wrote a server so that the qooxdoo app communicates with that. In qooxdoo I made a POST request like this var req = new qx.io.remote.Request( "http://127.0.0.1:8124";, "POST",