- 论坛徽章:
- 0
|
请教各位高手一个问题,我有一堆http请求如下:
Request:
POST /XXApi/services/ProjectHelper HTTP/1.1
Connection: Keep-Alive
Content-Type: text/xml
Content-Length: 328
Cache-control: no-cache
SOAPAction: "callXXX"
Host: xxx.com:8080
Accept: text/html, */*
Accept-Encoding: identity
User-Agent: Example
<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns sd="http://www.w3.org/2001/XMLSchema" xmlns si="http://www.w3.org/2001/XMLSchema-instance">
<SOAP-ENV:Body>
<calXXX xmlns="http://xxx.com">
<id>888</id>
</calXXX >
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
请问一下,如何使用perl 直接发送? |
|