Re: Why appear OPTIONS instead of POST in my RPC calls?

2010-06-23 Thread enTropy Fragment
Thanks for your comment, it helped me a lot. Indeed that's the "problem". I guess the next step is to create a good response so the RPC works. Or is there any better solution? (I can't avoid the cross-site situation) I've overriden the doOptions method in the servlet with the following code:

Re: Why appear OPTIONS instead of POST in my RPC calls?

2010-06-22 Thread Sripathi Krishnan
Probably because you are trying to make cross-domain requests (a different port, domain or protocol) See this post - http://groups.google.com/group/google-web-toolkit/browse_thread/thread/a080757856163097 --S

Why appear OPTIONS instead of POST in my RPC calls?

2010-06-22 Thread enTropy Fragment
Hello Here is my problem: When I call my rpc from inside the war everything works well, but when I call the same rpc calls from the same GWT javascript client stuff but injected into an external web site the rpc makes the call with HTTP OPTIONS instead of HTTP POST method. I'm very interested in c