如何从命令行使用cURL将XML文件POST到本地服务器http://localhost:8080 ?

我应该使用什么命令?


当前回答

如果你有多个头文件,那么你可能想使用以下方法:

curl -X POST --header "Content-Type:application/json" --header "X-Auth:AuthKey" --data @hello.json Your_url

其他回答

使用Jenkins 1.494,我能够在Ubuntu Linux 12.10上使用curl和——form参数将文件发送到作业参数:

curl --form name=myfileparam --form file=@/local/path/to/your/file.xml \
  -Fjson='{"parameter": {"name": "myfileparam", "file": "file"}}' \
  -Fsubmit=Build \
  http://user:password@jenkinsserver/job/jobname/build

在Jenkins服务器上,我配置了一个接受单个参数的作业:名为myfileparam的文件上传参数。

curl调用的第一行使用名为myfileparam的参数构造了一个web表单(与作业中的相同);它的值将是本地文件系统中名为/local/path/to/your/file.txt的文件的内容。符号前缀@告诉curl发送一个本地文件,而不是给定的文件名。

第二行定义了一个与第一行的表单参数匹配的JSON请求:一个名为myfileparam的文件参数。

第三行激活表单的Build按钮。第四行是带有“/build”后缀的作业URL。

如果调用成功,curl返回0。如果不成功,则将来自服务的错误或异常打印到控制台。这个答案很大程度上来自一篇与哈德森有关的旧博客文章,我根据自己的需要对它进行了解构和重新编写。

您可以使用该命令:

curl -X POST --header 'Content-Type: multipart/form-data' --header 'Accept: application/json' --header 'Authorization: <<Removed>>' -F file=@"/home/xxx/Desktop/customers.json"  'API_SERVER_URL' -k 

如果你有多个头文件,那么你可能想使用以下方法:

curl -X POST --header "Content-Type:application/json" --header "X-Auth:AuthKey" --data @hello.json Your_url

如果你在Windows上使用curl:

curl -H "Content-Type: application/xml" -d "<?xml version="""1.0""" encoding="""UTF-8""" standalone="""yes"""?><message><sender>Me</sender><content>Hello!</content></message>" http://localhost:8080/webapp/rest/hello

Powershell + Curl + Zimbra SOAP API

${my_xml} = @"
<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\">
  <soapenv:Body>
   <GetFolderRequest xmlns=\"urn:zimbraMail\">
    <folder>
       <path>Folder Name</path>
    </folder>
   </GetFolderRequest>
  </soapenv:Body>
</soapenv:Envelope>
"@

${my_curl} = "c:\curl.exe"
${cookie} = "c:\cookie.txt"

${zimbra_soap_url} = "https://zimbra:7071/service/admin/soap"
${curl_getfolder_args} = "-b", "${cookie}",
            "--header", "Content-Type: text/xml;charset=UTF-8",
            "--silent",
            "--data-raw", "${my_xml}",
            "--url", "${zimbra_soap_url}"

[xml]${my_response} = & ${my_curl} ${curl_getfolder_args}
${my_response}.Envelope.Body.GetFolderResponse.folder.id