You can do a normal post in an iframe, with URL encoded JSON (decode server-side), just watch the max string length for a URL.
On Jun 16, 4:43 pm, Rosa Spina <spina.r...@gmail.com> wrote: > Thanks for answer. > Yes, It's a post request for a page located on a different domain: > fromhttp://localhost:8080tohttp://localhost:8081(two tomcat istances). I know > it's not allowed by cross domain rules, in fact I use Json for get requests, > but I don't know how to do with post requests because never json type works. > I realized there isn't way :-( > 2009/6/16 James <james.gp....@gmail.com> > > > > > The error means you're trying to access a resource that located on > > another domain. > > You can only use AJAX POST or GET on a resource that is located on the > > same domain as the page that is calling it. > > > If that is the case in your scenario, could you provide more code for > > us to locate the issue? > > > On Jun 16, 4:44 am, Nowhere <spina.r...@gmail.com> wrote: > > > Hi all, > > > I'm newbie to Jquery so excuse me for dummy question. > > > I'm facing with the issue of making a call to another domain with > > > mozilla firefox. When I need a GET request, I use JQuery.getJson and > > > it works fine. The problem is when I need to do a POST request, I > > > tried with: > > > > jQuery.post( > > > url , > > > dati , > > > function(data){ > > > alert(data); > > > .... > > > > }, "json" ); > > > > but it gives me following error: > > > > Errore: uncaught exception: [Exception... "Access to restricted URI > > > denied" code: "1012" nsresult: "0x805303f4 (NS_ERROR_DOM_BAD_URI)" > > > location: "http://localhost:8081/html/js/barebone.jsp? > > > browserId=firefox&themeId=classic&colorSchemeId=01&minifierType=js&minifierBundleId=javascript.barebone.files&minifierBundleDir= > > > %2Fhtml%2Fjs&t=1233649818000 Line: 1"] > > > > The same error I get making a not json GET request. In this case I > > > solved using json...but in POST case I don't know how proceed. > > > Any hint will be appreciated, it's very urgent for me. If you need > > > more info let me know. > > > Greetings.