📄 soap.h
字号:
/*soap.hWSDL/SOAP binding schema--------------------------------------------------------------------------------gSOAP XML Web services toolsCopyright (C) 2001-2005, Robert van Engelen, Genivia Inc. All Rights Reserved.This software is released under one of the following two licenses:GPL or Genivia's license for commercial use.--------------------------------------------------------------------------------GPL license.This program is free software; you can redistribute it and/or modify it underthe terms of the GNU General Public License as published by the Free SoftwareFoundation; either version 2 of the License, or (at your option) any laterversion.This program is distributed in the hope that it will be useful, but WITHOUT ANYWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR APARTICULAR PURPOSE. See the GNU General Public License for more details.You should have received a copy of the GNU General Public License along withthis program; if not, write to the Free Software Foundation, Inc., 59 TemplePlace, Suite 330, Boston, MA 02111-1307 USAAuthor contact information:engelen@genivia.com / engelen@acm.org--------------------------------------------------------------------------------A commercial use license is available from Genivia, Inc., contact@genivia.com--------------------------------------------------------------------------------*///gsoap soap schema documentation: WSDL/SOAP binding schema//gsoap soap schema namespace: http://schemas.xmlsoap.org/wsdl/soap/#import "imports.h"class wsdl__definitions; // forward declarationclass wsdl__message; // forward declarationclass wsdl__part; // forward declarationenum soap__styleChoice { rpc, document };class soap__binding{ public: @xsd__anyURI transport; @enum soap__styleChoice *style;};class soap__operation{ public: @xsd__anyURI soapAction; @enum soap__styleChoice *style;};enum soap__useChoice { literal, encoded };class soap__body{ public: @xsd__anyURI encodingStyle; @xsd__NMTOKENS parts; @enum soap__useChoice use; @xsd__anyURI namespace_;};class soap__fault{ public: @xsd__NMTOKEN name; @xsd__anyURI encodingStyle; @enum soap__useChoice use; @xsd__anyURI namespace_;};class soap__headerfault{ public: @xsd__QName message; @xsd__NMTOKEN part; @enum soap__useChoice use; @xsd__anyURI encodingStyle; @xsd__anyURI namespace_; private: wsdl__message *messageRef; wsdl__part *partRef; public: int traverse(wsdl__definitions&); void messagePtr(wsdl__message*); void partPtr(wsdl__part*); wsdl__message *messagePtr() const; wsdl__part *partPtr() const;};class soap__header{ public: @xsd__QName message; @xsd__NMTOKEN part; @enum soap__useChoice use; @xsd__anyURI encodingStyle; @xsd__anyURI namespace_; std::vector<soap__headerfault> headerfault; // <soap:headerfault>* private: wsdl__message *messageRef; wsdl__part *partRef; public: int traverse(wsdl__definitions&); void messagePtr(wsdl__message*); void partPtr(wsdl__part*); wsdl__message *messagePtr() const; wsdl__part *partPtr() const;};class soap__address{ public: @xsd__anyURI location;};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -