我需要一个用于 Ant 的 RESTful httpclient。
与贡献相关的任务似乎都不再起作用了..
还没有人桥接 Commons-HTTPClient 和 Ant 吗?
我需要一个用于 Ant 的 RESTful httpclient。
与贡献相关的任务似乎都不再起作用了..
还没有人桥接 Commons-HTTPClient 和 Ant 吗?
尝试使用 Ant 执行任务和curl。
我已经使用 CURL 从 ANT 到具有以下宏定义的 POST 文件:
<pathconvert property="curl.path" targetos="windows">
<path location="${lib.dir}/curl/curl.exe"/>
</pathconvert>
<macrodef name="post-file" description="Use Curl to post the file to the WEBDAV path">
<attribute name="file"/>
<attribute name="url" />
<attribute name="username" default="${username}" />
<attribute name="password" default="${password}" />
<sequential>
<echo message="Using CURL to upload @{file} to @{url}" />
<!--Execute curl to post the file to the URL -->
<exec executable="${curl.path}">
<arg value='-L'/>
<arg value='-k'/>
<arg value='-f'/>
<arg value='-s'/>
<arg value="--anyauth"/>
<arg value="-u"/>
<arg value="@{username}:@{password}"/>
<arg value="-T" />
<arg value='"@{file}"' />
<arg value='@{url}'/>
</exec>
</sequential>
</macrodef>
像这样执行宏定义:
<target name="test-upload">
<post-file file="${file}"
url="${url}"
username="${username}"
password="${password}" />
</target>
Antelope中有一个 http post 任务,但它似乎不支持基本身份验证。:/