C++經由過程msxml挪用webservice示例分享。本站提示廣大學習愛好者:(C++經由過程msxml挪用webservice示例分享)文章只能為提供參考,不一定能成為您想要的結果。以下是C++經由過程msxml挪用webservice示例分享正文
其實沒甚麼難度,只是要調發送的xml格局,建議應用SoapUI調好,再粘到項目中
就是應用 msxml由於是mfc的器械,要在項目中設置在同享DLL中應用MFC
還有要在挪用的辦事前面加?wsdl說明成xml格局
代碼
webservice
using System;
using System.Data;
using System.Web;
using System.Collections;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.ComponentModel;
namespace WebService
{
/// <summary>
/// Service1 的摘要解釋
/// </summary>
[WebService(Namespace = "http://www.jb51.net/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
[WebMethod]
public string SayHello(string name)
{
return "Hello "+name;
}
}
}
頭文件
[code]
#pragma once
#include "stdafx.h"
#include "Atlbase.h"
//#import "msxml.dll"
#import "msxml4.dll"
using namespace MSXML2;
#include <string>
#include <iostream>
using namespace std;
挪用代碼
#include "Main.h"
int main(int argc, char* argv[])
{
printf("Test of XMLHTTP by masterz!\n");
CoInitialize(NULL);
try
{
IXMLHTTPRequestPtr xmlrequest;//界說http要求對象
xmlrequest.CreateInstance(__uuidof(XMLHTTP));//創立實列
CComVariant vFalse(FALSE);
CComVariant vNull(NULL);
xmlrequest->open("POST",bstr_t("http://192.168.71.172/Service1.asmx?wsdl"),vFalse,vNull,vNull);//翻開WEBServeice辦法:加?wsdl
xmlrequest->setRequestHeader(_bstr_t(_T("Content-Type")), _bstr_t(_T("text/xml")));
string sb;
sb.append("<?xml version='1.0' encoding='utf-8'?>");
sb.append("<soapenv:Envelope xmlns:soapenv='http://www.jb51.net/soap/envelope/' xmlns:tem='http://www.jb51.net/'>");
sb.append("<soapenv:Header/>");
sb.append("<soapenv:Body>");
//sb.append("<tem:HelloWorld/>");//挪用HelloWorld函數
sb.append("<tem:SayHello>");
sb.append("<tem:name>colin</tem:name>");//挪用SayHello函數,參數名是name,值為colin
sb.append("</tem:SayHello>");
sb.append("</soapenv:Body>");
sb.append("</soapenv:Envelope>");
xmlrequest->send(_variant_t(sb.c_str()));//發道數據
BSTR bstrbody;
xmlrequest->get_responseText(&bstrbody);//獲得前往數據
_bstr_t bstrtbody(bstrbody);
printf("%s\n",(LPCTSTR)bstrtbody);
MSXML2::IXMLDOMDocument2Ptr m_xmldoc;
m_xmldoc.CreateInstance(__uuidof(MSXML2::DOMDocument));
m_xmldoc->loadXML(bstrbody);
MSXML2::IXMLDOMNodePtr node = m_xmldoc->documentElement->firstChild;
LPCTSTR str = (LPCTSTR)node->nodeName;
string str2=(string)m_xmldoc->documentElement->text;
cout<<str2<<endl;
}
catch (_com_error &e)
{
printf("Description = '%s'\n", (char*) e.Description());
}
CoUninitialize();
printf("program end\n");
return 0;
}