博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Gsoap
阅读量:6714 次
发布时间:2019-06-25

本文共 3512 字,大约阅读时间需要 11 分钟。

1.create 命令
wsdl2h -o a.h   up.WSDL
soapcpp2.exe  -C -x a.h
2.添加文件
soapTestSoap12Proxy.h
soapTestSoapProxy.h
soapH.h
soapStub.h
stdsoap2.h
soapClientLib.cpp
soapC.cpp
soapClient.cpp
stdsoap2.cpp
3.CSoap.h
/*/
Gsoap处理类
*/
#ifndef _CSOAP
#define _CSOAP
///
#pragma once
#include "stdafx.h"
#include "soapH.h"
#include "CRegister.h"
using namespace std;
class CSOAP
{
private:
struct soap m_soap;
SOAP_ENV__Header header;
public:
CSOAP();
~CSOAP();
bool InitSoap();
};
#endif
CSoap.cpp
#pragma once
#include "StdAfx.h"
#include "CSoap.h"
#include "string"
#include "FaceAttendanceCoreSoap.nsmap"
#include <afxwin.h>
#pragma warning(disable: 4996)
static std::string headerPass="Lucky";
static std::string headerName="Lucky";
wstring UTF8ToUnicode( const string& str   ){ int  len = 0; len =   str.length(); int  unicodeLen = ::MultiByteToWideChar(   CP_UTF8,              0,              str.c_str(),              -1,              NULL,            0   );   wchar_t *  pUnicode;   pUnicode =   new  wchar_t[unicodeLen+1];     memset(pUnicode,0,(unicodeLen+1)*sizeof(wchar_t));     ::MultiByteToWideChar(   CP_UTF8,           0,           str.c_str(),           -1,           (LPWSTR)pUnicode,         unicodeLen   );   wstring  rt;   rt = ( wchar_t*   )pUnicode; delete  pUnicode;   return    rt;  }
string   UnicodeToANSI( const wstring& str   ){ char*       pElementText; int    iTextLen; iTextLen = WideCharToMultiByte(   CP_ACP,           0,           str.c_str(),           -1,           NULL,           0,NULL,         NULL   ); pElementText = new char[iTextLen + 1]; memset( ( void*   )pElementText, 0, sizeof( char ) * ( iTextLen + 1 )   ); ::WideCharToMultiByte(   CP_ACP,           0,           str.c_str(),           -1,           pElementText,           iTextLen,           NULL,         NULL   ); string strText; strText = pElementText; delete[]   pElementText; return strText;}
wstring ANSIToUnicode( const string& str   ){ int  len = 0; len =   str.length(); int  unicodeLen = ::MultiByteToWideChar(   CP_ACP,              0,              str.c_str(),              -1,              NULL,            0   );   wchar_t *  pUnicode;   pUnicode =   new  wchar_t[unicodeLen+1];     memset(pUnicode,0,(unicodeLen+1)*sizeof(wchar_t));     ::MultiByteToWideChar(   CP_ACP,           0,           str.c_str(),           -1,           (LPWSTR)pUnicode,         unicodeLen   );   wstring  rt;   rt = ( wchar_t*   )pUnicode; delete  pUnicode;   return    rt;  }
string UnicodeToUTF8( const wstring& str   ){ char*       pElementText; int    iTextLen; iTextLen = WideCharToMultiByte(   CP_UTF8,           0,           str.c_str(),           -1,           NULL,           0,           NULL,         NULL   ); pElementText = new char[iTextLen + 1]; memset( ( void*   )pElementText, 0, sizeof( char ) * ( iTextLen + 1 )   ); ::WideCharToMultiByte(   CP_UTF8,           0,           str.c_str(),           -1,           pElementText,           iTextLen,           NULL,         NULL   ); string strText; strText = pElementText; delete[]   pElementText; return strText;}
CSOAP::CSOAP()
{
InitSoap();
}
CSOAP::~CSOAP()
{
soap_destroy(&m_soap);
soap_end(&m_soap);
soap_done(&m_soap);
}
bool CSOAP::InitSoap()
{
soap_init(&m_soap);
soap_set_mode(&m_soap,SOAP_C_UTFSTRING);
m_soap.mode|=SOAP_C_UTFSTRING;
header.ns1__MySoapHeader_=new ns1__MySoapHeader;
header.ns1__MySoapHeader_->PassWord=&headerPass;
header.ns1__MySoapHeader_->UserName=&headerName;
m_soap.header=&header;
return true;
}
bool CSOAP::EnLogin(CString name,CString pass,CString &tip)//管理员登陆
{
_ns1__UserLogin login;
_ns1__UserLoginResponse loginResponse;
string loginPass=pass;
string loginName=name;
login.PassWord=&loginPass;
login.UserName=&loginName;
m_soap.header=&header;
if(SOAP_OK==soap_call___ns2__UserLogin(&m_soap,NULL,NULL,&login,&loginResponse))
{
Sleep(500);
tip=DecodeUtf8(loginResponse.UserLoginResult->ResultContent->c_str());
if(loginResponse.UserLoginResult->ErrorCode==0)
return true;
else 
return false;
}
else
{
tip=_T("网络连接失败");
//tip.Format(_T("%s"),*soap_faultstring(&m_soap));
return false;
}
}

转载于:https://www.cnblogs.com/zzili/archive/2012/12/06/6663236.html

你可能感兴趣的文章
[学习笔记]Spring依赖注入
查看>>
网络虚拟化(SDN,NFV..)和企业骨干网的演化
查看>>
怎么确保站点的可用性
查看>>
我的第一个android应用——装逼神器《微博尾》
查看>>
[3] MQTT,mosquitto,Eclipse Paho---怎样使用 Eclipse Paho MQTT工具来发送订阅MQTT消息?
查看>>
oracle 之 控制oracle RAC 进行并行运算
查看>>
jsTree插件简介(三)
查看>>
2D Rotated Rectangle Collision
查看>>
PHP error_reporting() 函数
查看>>
SpringBoot(十)-- 整合MyBatis
查看>>
查看三种MySQL字符集的方法
查看>>
django -- 多对多关系的实现
查看>>
with revoked permission android.permission.CAMERA
查看>>
Python在函数中使用*和**接收元组和列表
查看>>
115. Distinct Subsequences
查看>>
C++ 指针(不论什么一个指针本身的类型都是unsigned long int型)
查看>>
[PHP] 通用网关接口CGI 的运行原理
查看>>
phoenixframe自己主动化平台在Linux环境下运行用例的说明
查看>>
Linux:sheel脚本for的用法,及日期参数+1day用法
查看>>
GetKeyState(), GetAsyncKeystate(), GetKeyboardSlate()
查看>>