1

我正在这个“配置”中尝试 GWT:

1)我在python中编写了一个服务器后端,它将产生json输出(在localhot:8094运行)

2)我编写了一个非常简单的 GWT 应用程序,它将使用 RequestBuilder 将 GET 设置到 python 服务器(在 GWT eclipse 插件的开发模式下,可以通过http://127.0.0.1:8888/test.html访问)

代码很简单

/**
 * Entry point classes define <code>onModuleLoad()</code>.
 */
public class Test implements EntryPoint {
    /**
     * The message displayed to the user when the server cannot be reached or
     * returns an error.
     */

    private static final String SERVER_URL = "http://localhost:8094";
    private static final String SERVER_ERROR = "An error occurred while "
            + "attempting to contact the server. Please check your network "
            + "connection and try again.";

    /**
     * This is the entry point method.
     */
    public void onModuleLoad() {

        RequestBuilder requestBuilder = new RequestBuilder(RequestBuilder.GET, SERVER_URL);
        try {
            requestBuilder.sendRequest(null, new Jazz10RequestCallback());
        } catch (RequestException e) {
            Window.alert("Failed to send the message: " 
                    + e.getMessage());
        }

    }

    class Jazz10RequestCallback implements RequestCallback{

        public void onError(Request request, Throwable exception) {
                // never reach here
        Window.alert("Failed to send the message: "
                    + exception.getMessage());

        }

        public void onResponseReceived(Request request, Response response) {
            // render output
            Window.alert(response.getText());

        }


    }
}

但是警报总是来自 onResponseReceived 并且什么都不显示(我想是空字符串)

我可以正常访问我的 python 服务器并通过浏览器下载 json。但我看不到任何来自 GWT 的服务器请求。

我确保“inherits name='com.google.gwt.http.HTTP”在 gwt.xml 文件中

问题是:

1)在这里工作的网站政策限制是否相同?我希望出现异常(因此会出现失败消息),但它没有发生

2) 如果确实是同一个站点策略问题,那么从 python 后端部署 GWT 脚本的最简单方法是什么?eclipse gwt 插件在 war 子目录中产生了一些工件。将这些文件复制到我的 python 后端的某个静态目录就足够了吗?

4

3 回答 3

2

1)是的,虽然主机相同,但您正在尝试访问不同的端口 - SOP 不允许这样做。您可能会遇到 JavaScript 异常 - 检查 Firebug 的控制台或类似的东西。

2)按照官方文档中的指南进行操作。您不需要 Java 服务器 - 只需一个可以提供 HTTP 内容的服务器(例如,Apache 就可以了)。我没有使用 Python 作为后端的经验,但我确信有一个提供 Python 和 HTTP 的解决方案。

使用 -noserver 标志时,GWT 托管模式浏览器使用您的外部服务器来提供动态内容和所有静态内容(例如 GWT 应用程序的主机页面、其他 HTML 文件、图像、CSS 等) .)

在这种情况下,动态内容将是您的 Python 脚本。

于 2010-03-05T22:40:31.200 回答
1

是的,由于 SOP,这将失败。你得到什么 HTTP 响应代码?通常在这种情况下返回为 0 而不是 200 (OK)。一个解决方案可能是使用 JSONP 方法,作为本文的一部分,我在 JSONP 和 GWT 上写了一点:http ://www.bristol-gtug.org/?p=76

于 2010-03-10T21:33:59.380 回答
1

这可能为时已晚。如果您没有使用相对路径等访问本地资源,那么您是对的,它受制于 SOP(同源策略)。-no-server 标志对解决此问题没有多大帮助。要绕过此问题,请阅读http://code.google.com/p/google-web-toolkit-doc-1-5/wiki/FAQ_JSONFeedsFromOtherDomain。更好的解决方案是使用 gdata api 使用的 com.google.gwt.jsonp.client.JsonpRequestBuilder,(请记住继承继承名称 = 'com.google.gwt.jsonp.Jsonp' \)(“更好“在某种意义上说你不必自己写)。希望这可以帮助。干杯~

于 2010-06-27T12:10:00.527 回答