RemoteObject - 跨域问题

时间:2008-10-24 11:49:14

标签: flex xml-rpc

我正在尝试从我的服务器获取数据,使用RemoteObject来完成它。 当我在我的localhost上运行应用程序时,它工作得很好但是当我在我的服务器上使用它时,我得到一个Channel.Security.Error(访问URL时出现安全性错误)。

在服务器端日志中提到了跨域。 77.127.194.4 - - [23 / Oct / 2008 21:15:11]“GET /crossdomain.xml HTTP / 1.1”501

有人遇到同样的问题吗?任何想法?

2 个答案:

答案 0 :(得分:1)

您是否曾尝试添加到您的crossdomain.xml(从中获取内容):

<?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.YOUR_FRAME_WORK_CROSSDOMAIN_POLICY.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
        <site-control permitted-cross-domain-policies="all"/>
        <allow-access-from domain="*.YOUR_SITE_GOES_HERE.com" secure="false" />
        <allow-access-from domain="*.YOUR_SITE_GOES_HERE.com" secure="false" />
    </cross-domain-policy>

大写的内容你可能不得不改变以适应你的框架。例如,我从使用macromedia flash的那个复制了那个。我没有“www.YOUR_FRAME_WORK_CROSSDOMAIN_POLICY.com / ...”而是“www.macromedia.com/xml/dtds /...

我不确定但是试着调查一下,这可能是你的问题。对于跨域,您通常需要添加到服务器端,您可以在其中获取其他网站的权限。

答案 1 :(得分:1)

我找到了解决方案。你是关于crossdomain.xml文件的,但遗憾的是,Python SimpleXMLRPCServer库默认不支持GET方法,所以我们需要实现它。

from SimpleXMLRPCServer import SimpleXMLRPCRequestHandler

class ExtendedXMLRPCRequestHandler(SimpleXMLRPCRequestHandler):
  def do_GET(self):
    #only allow a request for the crossdomain file
    if self.path != '/crossdomain.xml':
      self.send_response(403)
      self.log_request(403)
      return

    #open the crossdomain file and read its contents
    response = open('crossdomain.xml', 'r').read()

    #write the data to the socket along with valid HTTP headers
    self.send_response(200)
    self.send_header("Content-type", "text/xml")
    self.send_header("Content-length", str(len(response)))
    self.end_headers()
    self.wfile.write(response)
    self.log_request(200)