If the page/service you're trying to consume will only take POST requests, you can make the Ajax call to _your_ server which then creates a proxy Http call to the endpoint with the appropriate headers and whatnot. Most server languages support this via some sort of HttpClient class.
I'm assuming julien's comment is along those lines, though I'm not a php dude. ... and Jerod's solution will only work if the endpoint you're calling returns javascript. On Sun, Jan 4, 2009 at 3:25 AM, julien Devouassoud <[email protected]>wrote: > Look at : php file_get_contents > > > On Sat, Jan 3, 2009 at 6:15 PM, Jerod Venema <[email protected]> wrote: > >> That said, there are ways around it. If you're just doing a "GET" request, >> and the other site is designed to allow it (or more likely, not designed NOT >> to allow it), you can simply inject the appropriate <script> tag in the >> header of your page.... >> >> On Sat, Jan 3, 2009 at 11:52 AM, T.J. Crowder >> <[email protected]>wrote: >> >>> >>> > Nope. Google "single origin policy" for the reason why. >>> >>> Or "same origin policy". Here's the top hit when you do: >>> http://en.wikipedia.org/wiki/Same_origin_policy >>> >>> HTH, >>> -- >>> T.J. Crowder >>> tj / crowder software / com >>> >>> On Jan 3, 4:37 pm, Walter Lee Davis <[email protected]> wrote: >>> > Nope. Google "single origin policy" for the reason why. >>> > >>> > Walter >>> > >>> > On Jan 2, 2009, at 3:02 AM, Jagan wrote: >>> > >>> > >>> > >>> > > I want to call different website url in ajax.request method. is it >>> > > possible? is there any way to call >>> > >>> > > Ex: i am in xyz.com/home.jsp. In this page i want to call new >>> > > Ajax.Request('http://www.abc.com/result.jsp?id=1001') >>> >>> >> >> >> -- >> Jerod Venema >> Frozen Mountain Software >> http://www.frozenmountain.com/ >> 919-368-5105 >> >> >> >> > > > > -- Ryan Gahl CEO Nth Penguin, LLC http://www.nthpenguin.com -- WebWidgetry.com / MashupStudio.com Future Home of the World's First Complete Web Platform -- Inquire: 1-920-574-2218 Blog: http://www.someElement.com LinkedIn Profile: http://www.linkedin.com/in/ryangahl --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en -~----------~----~----~----~------~----~------~--~---
