关于TCP post发送的问题
时间:12-13
整理:3721RD
点击:
各位大牛,小弟最近在做一个关于TCP模块发送数据,找了一个例子挺有用的,但有一处不明白,问一下大家
附件里程序图,程序是用TCP模块发送一些数据,然后由远端服务器接收,再反馈数据
其中发送的数据格式看不太懂,能不能帮我解释一下这个文件头:(主要是前面那个文件头,后面是XML文件发送内容)
POST /ip2geo/ip2geo.asmx HTTP/1.1
Host: ws.cdyne.com
Content-Type: text/xml; charset=utf-8
Content-Length: 391
SOAPAction: "http://ws.cdyne.com/ResolveIP"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ResolveIP xmlns="http://ws.cdyne.com/">
<IPaddress>62.250.4.144</IPaddress>
<LicenseKey>0</LicenseKey>
</ResolveIP>
</soap:Body>
</soap:Envelope>
附件里程序图,程序是用TCP模块发送一些数据,然后由远端服务器接收,再反馈数据
其中发送的数据格式看不太懂,能不能帮我解释一下这个文件头:(主要是前面那个文件头,后面是XML文件发送内容)
POST /ip2geo/ip2geo.asmx HTTP/1.1
Host: ws.cdyne.com
Content-Type: text/xml; charset=utf-8
Content-Length: 391
SOAPAction: "http://ws.cdyne.com/ResolveIP"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ResolveIP xmlns="http://ws.cdyne.com/">
<IPaddress>62.250.4.144</IPaddress>
<LicenseKey>0</LicenseKey>
</ResolveIP>
</soap:Body>
</soap:Envelope>
这是纯的网络协议应用了吧,跟labview关系不大,俺不太懂
噢,谢谢呵,我去别的版块问问看~~