谷歌应用程序引擎Java - 使用低级API来获取数据 - 一些困难

发布于 2024-12-21 07:00:39 字数 768 浏览 0 评论 0原文

在 Google App Engine for Java Web 应用程序中,我尝试使用低级 api 来调用 XML RPC ...查看文档后,我找到了使用低级 API 进行连接的以下代码 - 这就是我的原因想要使用 Low Level API 是这样我可以自己设置超时值 -

         String mrtime="120";
         java.lang.Double maxresponsetime;
         maxresponsetime = Double.valueOf(mrtime).doubleValue();
         HTTPRequest req=  new  HTTPRequest(url, HTTPMethod.GET, disallowTruncate().setDeadline(maxresponsetime));
         HTTPResponse response= com.google.appengine.api.urlfetch.URLFetchServiceFactory.getURLFetchService().fetch(req);
         String line="";
         String resp="";
         resp=new String(response.getContent(), "UTF-8");

上面的代码适用于 GAE 访问远程 URL 的场景...但是我还必须发送包含函数名称的 XML 消息以及输入参数(这些存储在名为的变量中'message')... 如何将该消息发送到远程 URL,然后获取响应?

In a Google App Engine for Java web app, I am trying to use the low level api to invoke an XML RPC ...After looking at the docs, I figured out the following code to connect using low level API-the reason why I want to use Low Level API is so that I can set the timeout value myself--

         String mrtime="120";
         java.lang.Double maxresponsetime;
         maxresponsetime = Double.valueOf(mrtime).doubleValue();
         HTTPRequest req=  new  HTTPRequest(url, HTTPMethod.GET, disallowTruncate().setDeadline(maxresponsetime));
         HTTPResponse response= com.google.appengine.api.urlfetch.URLFetchServiceFactory.getURLFetchService().fetch(req);
         String line="";
         String resp="";
         resp=new String(response.getContent(), "UTF-8");

The above code is suitable for a scenario where the remote URL is accessed by GAE...However I have to also send an XML message containing name of function as well as input parameters (these are stored in variable named 'message')... How do I send that message to the remote URL, and after that obtain the response?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蹲在坟头点根烟 2024-12-28 07:00:39

您应该发布调用方法和参数,而不是 GET。方法名称和参数采用 XML 格式。

请参阅此 http://xmlrpc.scripting.com/spec.html

You should post the call method and parameters instead of GET. The method name and parameters go as XML.

See this http://xmlrpc.scripting.com/spec.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文