[Proto-Scripty] Re: Calling other website server url

2009-01-04 Thread julien Devouassoud
Look at : php file_get_contents On Sat, Jan 3, 2009 at 6:15 PM, Jerod Venema jven...@gmail.com 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

[Proto-Scripty] Re: Calling other website server url

2009-01-04 Thread Ryan Gahl
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

[Proto-Scripty] Re: Calling other website server url

2009-01-03 Thread Walter Lee Davis
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

[Proto-Scripty] Re: Calling other website server url

2009-01-03 Thread T.J. Crowder
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 wa...@wdstudio.com wrote: Nope. Google single