Use a Web Proxy for Cross-Domain XMLHttpRequest Calls

来源:百度文库 编辑:神马文学网 时间:2024/10/01 10:46:44
Why You Need a Proxy
All modern web browsers impose a security restriction on network connections, which includes calls to XMLHttpRequest. This restriction prevents a script or application from making a connection to any web server other than the one the web page originally came from (Internet Explorer will allow cross-domain requests if the option has been enabled in the preferences). If both your web application and the XML data that application uses come directly from the same server, then you do not run into this restriction.

If, however, you serve your web application from one web server and you make web service data requests to another server -- for example, to the Yahoo! Web Services -- then the browser prevents the connection from being opened at all. Bummer.

There are a number of solutions to this problem but the most commonly-used one is to install a proxy on your web server. Instead of making your XMLHttpRequest calls directly to the web service, you make your calls to your web server proxy. The proxy then passes the call onto the web service and in return passes the data back to your client application. Because the connection is made to your server, and the data comes back from your server, the browser has nothing to complain about.

For security reasons it‘s a good idea for any proxy you install on your web server should be limited in use. An open proxy that passes on connections to any web site URL is open to abuse. Although it is difficult to limit the connections to your proxy from only your application, you can prevent the proxy from making connections to servers other than those you specify. Hard code the URL to connect to in the proxy itself or provide limited options. This makes the proxy less open and less useful to users other than your client application.
PHP Proxy for Yahoo! Web Services
For the Yahoo! Developer NetworkJavaScript Developer Center we have provided sample code for asimple web proxy, written in PHP, that takes requests for the Yahoo! Search APIs. You can install this proxy on your own web server in any convenient location (your web server must be set up to run PHP).
The proxy encodes the Yahoo! Web services site URL in a global variable called HOSTNAME. ou will need to modify this variable to refer to the Yahoo! Web Services API you‘ll be using. This is the domain used by the Yahoo! Search web services; other domains include Yahoo! Local (http://api.local.yahoo.com) and Yahoo! Travel (http://api.travel.yahoo.com).
define (‘HOSTNAME‘, ‘http://api.search.yahoo.com/‘);
To use the PHP web proxy in your client application, the URL for the request in the JavaScript code includes the path for the Yahoo! Web Services request, minus the domain name. The domain name is added by the proxy itself on the server side. This code snippet comes from amore complete XMLHttpRequest code sample on ourJavaScript Developer Center.
// The web services request minus the domain name
var path = ‘VideoSearchService/V1/videoSearch?appid=YahooDemo&query=madonna&results=2‘;
// The full path to the PHP proxy
var url = ‘http://localhost/php_proxy_simple.php?yws_path=‘ + encodeURIComponent(path);
... // core xmlhttp code
xmlhttp.open(‘GET‘, url, true);
Note that although this example uses an HTTP GET request, the sample PHP web proxy also supports POST.
You could modify the proxy to do post-processing of the data you get from the request on the server side, for example, to strip out only the elements you‘re interested in or the parse the XML into a format you can more comfortably handle in JavaScript.
Other Solutions
In addition to using a web proxy to pass web services data to your application, there are several other options to working around cross-domain browser restrictions:
Use apache‘s mod_rewrite or mod_proxy to pass requests from your server to some other server. In your client code you just make the request as if it was actually on your server -- no browser problems with that. Apache then does its magic and makes the request to the other server for you. Use JSON and dynamic