Mathematica 8.0使用HTTP POST和XML与Web服务器JSP交互

时间:2011-12-02 20:49:00

标签: wolfram-mathematica webserver

我的任务是使用Mathematica通过JSP使用HTTP POST和XML与第三方的Web服务器进行交互。我需要发送的示例:

<html>
<head></head>
<body>
<form method="post" action="http://www. ... .com/login.jsp">
<textarea name="xml" wrap="off" cols="80" rows="30" spellcheck="false">
<loginInfo>
<param name="username" type="string">USERNAME</param>
<param name="pwd" type="string">PASSWORD</param>
</loginInfo>
</textarea>
<input type="hidden" name="Login" value="1"/>
<input type="submit" name="go" value="go" />
</form>
</body>
</html>

我将收到的内容示例(XML):

<UserPluginInfo>
  <PluginInfo>
    <param name="pluginUid" type="string">1</param>
  </PluginInfo>
  <UserInfo>
     <param name="username" type="string">USERNAME</param>
  </UserInfo>
</UserPluginInfo>

我在2009年写了一篇关于与Twitter交互的blog by Robert Raguet-Schofield,它使用J / Link访问Java来执行HTTP POST并处理响应。

我的问题是,这是完成我的任务的最佳方法,还是自2009年以来Mathematica已经发展并且有更好的方法(更直接)来完成我的任务?

1 个答案:

答案 0 :(得分:1)

虽然这可能不是更好的方法,但绕过J / Link需求的另一种方法是设置一个中间CGI脚本,将请求从GET转换为POST给你

此脚本文件位于可访问的服务器上,它将采用指定的GET查询,在目标页面上发出POST请求,然后以正常方式输出/返回结果XML。

例如,在PHP中使用curl可以很好地工作 - 尽管显然可以在几乎任何CGI语言中实现相同的功能。

<?php 
$c = curl_init();

// set the various options, Url, POST,etc
curl_setopt($c, CURLOPT_URL, "http://www. ... .com/login.jsp"); // Target page
curl_setopt($c, CURLOPT_HEADER, false);
curl_setopt($c, CURLOPT_POST, true); 
curl_setopt($c, CURLOPT_RETURNTRANSFER, false); 

// POST the incomming query to the Target Page
curl_setopt($c, CURLOPT_POSTFIELDS, $_SERVER['QUERY_STRING']); 
curl_exec($c);
curl_close($c);

// Output the XML response using header/echo/etc... 
// You might need to also send some of the POST request response headers
// use CURLOPT_HEADER to access these...

?>

从Mathmatica的角度来看,这简单得多,因为您只需使用内置的import方法在代理页面上发出标准GET请求,但从{{1}获取结果XML登录页面上的请求。