wince5.0如何将xml文件发送到web服务端,并可接收服务端返回的xml文件
wince5.0如何将xml文件发送到web服务端,并可接收服务端返回的xml文件?
可以参考 HTTP POST 等方式
已找到解决方法。 用 #import <msxml4.dll> using namespace MSXML2; IXMLHTTPRequestPtr pIXMLHTTPRequest =NULL; MSXML2::IXMLDOMDocumentPtr pXMLDoc; // 打开post hr=pIXMLHTTPRequest->open("POST", url, vAsync, vUser, vPassword); //如果要向服务器post数据,这个地方一定要设置为application/x-www-form-urlencoded pIXMLHTTPRequest->setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); //发送 hr =pIXMLHTTPRequest->send(vRequest);
|