dsmp.h

来自「SOAP协议的C版本」· C头文件 代码 · 共 65 行

H
65
字号
//gsoap soapenc schema namespace: http://schemas.xmlsoap.org/soap/encoding/
//gsoap xsd schema namespace: http://www.w3.org/2001/XMLSchema
//gsoap wsdl schema namespace: http://schemas.xmlsoap.ort/wsdl/
//gsoap ws schema namespace: http://www.monternet.com/dsmp/wsdl/
//gsoap soap schema namespace: http://schemas.xmlsoap.org/wsdl/soap/

//gsoap ws service namespace: http://www.monternet.com/dsmp/wsdl/
//gsoap dsmp schema namespace: http://www.monternet.com/dsmp/schemas/

//gsoap ws service location: http://10.1.3.107:8080/dsmp/sync
//gsoap ws service name: dsmp

/*start primitive data types*/
typedef char * xsd__string;
struct xsd__base64Binary {
	unsigned char *__ptr;
	int __size;
};
typedef char * xsd__integer;

/*end primitive data types*/

struct SOAP_ENV__Header  {

	xsd__string * TransactionID;
	};
typedef xsd__string  dsmp__TransactionID ;

struct dsmp__SyncOrderRelationResp {
	xsd__string  MsgType;
	xsd__string  Version;
	xsd__integer  hRet;
};

struct dsmp__user_id {
	xsd__integer  UserIDType;
	xsd__string  MSISDN;
	struct xsd__base64Binary * PseudoCode;
};


struct dsmp__address_info{
	xsd__integer  DeviceType;
	xsd__string  DeviceID;
};

struct dsmp__SyncOrderRelationReq {
	xsd__string  MsgType;
	xsd__string  Version;
	struct dsmp__address_info * Send_Address;
	struct dsmp__address_info * Dest_Address;
	struct dsmp__user_id * FeeUser_ID;
	struct dsmp__user_id * DestUser_ID;
	xsd__string  LinkID;
	xsd__integer  ActionID;
	xsd__integer  ActionReasonID;
	xsd__string  SPID;
	xsd__string  SPServiceID;
	xsd__integer  AccessMode;
	struct xsd__base64Binary * FeatureStr;
};

//gsoap ws service method-action: SyncOrderRelation "sim.SyncOrderRelation"
dsmp__SyncOrderRelation(struct dsmp__SyncOrderRelationReq *pReq, struct dsmp__SyncOrderRelationResp *pResp);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?