/* wsdl.h WSDL 1.1 binding schema interface -------------------------------------------------------------------------------- gSOAP XML Web services tools Copyright (C) 2001-2010, 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 under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Author contact information: engelen@genivia.com / engelen@acm.org -------------------------------------------------------------------------------- A commercial use license is available from Genivia, Inc., contact@genivia.com -------------------------------------------------------------------------------- */ //gsoapopt w //gsoap wsdl schema documentation: WSDL 1.1 binding schema //gsoap wsdl schema namespace: http://schemas.xmlsoap.org/wsdl/ //gsoap wsdl schema elementForm: qualified //gsoap wsdl schema attributeForm: unqualified #import "imports.h" #import "schema.h" #import "soap.h" #import "mime.h" #import "dime.h" #import "http.h" #import "gwsdl.h" #import "wsam.h" #import "wsp.h" class wsdl__definitions; // forward declaration class wsdl__import { public: @xsd__anyURI namespace_; @xsd__anyURI location; private: wsdl__definitions *definitionsRef; public: wsdl__import(); int preprocess(wsdl__definitions&); int traverse(wsdl__definitions&); void definitionsPtr(wsdl__definitions*); wsdl__definitions *definitionsPtr() const; }; class wsdl__types { public: xsd__string documentation; // ? std::vector xs__schema_; // * public: int preprocess(wsdl__definitions&); int traverse(wsdl__definitions&); }; class wsdl__part { public: @xsd__NMTOKEN name; @xsd__QName element; @xsd__QName type; xsd__string documentation; // ? private: xs__element *elementRef; // traverse() finds element xs__simpleType *simpleTypeRef; // traverse() finds simpleType xs__complexType *complexTypeRef; // traverse() finds complexType public: wsdl__part(); int traverse(wsdl__definitions&); void elementPtr(xs__element*); void simpleTypePtr(xs__simpleType*); void complexTypePtr(xs__complexType*); xs__element *elementPtr() const; xs__simpleType *simpleTypePtr() const; xs__complexType *complexTypePtr() const; }; class wsdl__message { public: @xsd__NMTOKEN name; xsd__string documentation; // ? std::vector wsp__Policy_; // * std::vector wsp__PolicyReference_;// * std::vector part; // * public: int traverse(wsdl__definitions&); }; class wsdl__input { public: @xsd__NMTOKEN name; @xsd__QName message; @xsd__anyURI wsam__Action; xsd__string documentation; // ? wsp__Policy *wsp__Policy_; // ? wsp__PolicyReference *wsp__PolicyReference_; // ? private: wsdl__message *messageRef; // traverse() finds message public: wsdl__input(); int traverse(wsdl__definitions&); void messagePtr(wsdl__message*); wsdl__message *messagePtr() const; }; class wsdl__output { public: @xsd__NMTOKEN name; @xsd__QName message; @xsd__anyURI wsam__Action; xsd__string documentation; // ? wsp__Policy *wsp__Policy_; // ? wsp__PolicyReference *wsp__PolicyReference_; // ? private: wsdl__message *messageRef; // traverse() finds message public: wsdl__output(); int traverse(wsdl__definitions&); void messagePtr(wsdl__message*); wsdl__message *messagePtr() const; }; class wsdl__fault { public: @xsd__NMTOKEN name; @xsd__QName message; @xsd__anyURI wsam__Action; xsd__string documentation; // ? wsp__Policy *wsp__Policy_; // ? wsp__PolicyReference *wsp__PolicyReference_; // ? private: wsdl__message *messageRef; // traverse() finds message public: wsdl__fault(); int traverse(wsdl__definitions&); void messagePtr(wsdl__message*); wsdl__message *messagePtr() const; }; class wsdl__operation { public: @xsd__NMTOKEN name; @xsd__string parameterOrder; xsd__string documentation; // ? wsp__Policy *wsp__Policy_; // ? wsp__PolicyReference *wsp__PolicyReference_; // ? wsdl__input *input; // ? wsdl__output *output; // ? std::vector fault; // * public: int traverse(wsdl__definitions&); }; class wsdl__portType { public: @xsd__NMTOKEN name; xsd__string documentation; // ? wsp__Policy *wsp__Policy_; // ? wsp__PolicyReference *wsp__PolicyReference_; // ? std::vector operation; // * public: int traverse(wsdl__definitions&); }; class wsdl__ext_input // extensibility element { public: @xsd__NMTOKEN name; xsd__string documentation; // ? wsp__Policy *wsp__Policy_; // ? wsp__PolicyReference *wsp__PolicyReference_; // ? dime__message *dime__message_; // ? soap__body *soap__body_; // ? xsd__string http__urlEncoded; // ? mime__multipartRelated *mime__multipartRelated_;// ? mime__content *mime__content_; // ? mime__mimeXml *mime__mimeXml_; // ? std::vector soap__header_; // * public: int traverse(wsdl__definitions&); }; class wsdl__ext_output // extensibility element { public: @xsd__NMTOKEN name; xsd__string documentation; // ? wsp__Policy *wsp__Policy_; // ? wsp__PolicyReference *wsp__PolicyReference_; // ? dime__message *dime__message_; // ? soap__body *soap__body_; // ? xsd__string http__urlEncoded; // ? mime__multipartRelated *mime__multipartRelated_;// ? mime__content *mime__content_; // ? mime__mimeXml *mime__mimeXml_; // ? std::vector soap__header_; // * public: int traverse(wsdl__definitions&); }; class wsdl__ext_fault // extensibility element { public: @xsd__NMTOKEN name; xsd__string documentation; // ? wsp__Policy *wsp__Policy_; // ? wsp__PolicyReference *wsp__PolicyReference_; // ? soap__fault *soap__fault_; // ? private: wsdl__message *messageRef; public: wsdl__ext_fault(); int traverse(wsdl__definitions&); void messagePtr(wsdl__message*); wsdl__message *messagePtr() const; }; class wsdl__binding_operation { public: @xsd__NMTOKEN name; xsd__string documentation; // ? wsp__Policy *wsp__Policy_; // ? wsp__PolicyReference *wsp__PolicyReference_; // ? soap__operation *soap__operation_; // ? http__operation *http__operation_; // ? wsdl__ext_input *input; // ? wsdl__ext_output *output; // ? std::vector fault; // * private: wsdl__operation *operationRef; // traverse() finds operation in public: wsdl__binding_operation(); int traverse(wsdl__definitions&, wsdl__portType*); void operationPtr(wsdl__operation*); wsdl__operation *operationPtr() const; }; class wsdl__binding { public: @xsd__NMTOKEN name; @xsd__QName type; xsd__string documentation; // ? std::vector wsp__Policy_; // * std::vector wsp__PolicyReference_;// * soap__binding *soap__binding_; // ? http__binding *http__binding_; // ? std::vector operation; // * private: wsdl__portType *portTypeRef; // traverse() finds portType public: wsdl__binding(); int traverse(wsdl__definitions&); void portTypePtr(wsdl__portType*); wsdl__portType *portTypePtr() const; }; class wsdl__port { public: @xsd__NMTOKEN name; @xsd__QName binding; xsd__string documentation; // ? wsp__Policy *wsp__Policy_; // ? wsp__PolicyReference *wsp__PolicyReference_; // ? wsa__EndpointReferenceType *wsa__EndpointReference;// ? soap__address *soap__address_; // ? http__address *http__address_; // ? private: wsdl__binding *bindingRef; // traverse() finds binding public: wsdl__port(); int traverse(wsdl__definitions&); void bindingPtr(wsdl__binding*); wsdl__binding *bindingPtr() const; }; class wsdl__service { public: @xsd__NMTOKEN name; xsd__string documentation; // ? std::vector wsp__Policy_; // * std::vector wsp__PolicyReference_;// * std::vector port; // * public: int traverse(wsdl__definitions&); }; class wsdl__definitions { public: @xsd__NMTOKEN name; @xsd__anyURI targetNamespace = ""; @xsd__NMTOKEN version; std::vector import; // * xsd__string documentation; // ? xsd__string wsp__UsingPolicy; // ? std::vector wsp__Policy_; // * wsdl__types *types; // ? std::vector message; // * std::vector portType; // * std::vector binding; // * std::vector service; // * std::vector gwsdl__portType_; // * For the moment, we will hardcode this which makes it easier to access. WSDL 1.1 does not allow this to be extended anyway struct soap *soap; private: bool updated; char* location; int redirs; SetOfString builtinTypeSet; SetOfString builtinElementSet; SetOfString builtinAttributeSet; public: wsdl__definitions(); wsdl__definitions(struct soap*, const char*, const char*); virtual ~wsdl__definitions(); int get(struct soap*); // gSOAP getter is triggered after parsing int preprocess(); int traverse(); int read(int, char**); int read(const char *cwd, const char*); const char* sourceLocation(); int error(); void print_fault(); void builtinType(const char*); void builtinTypes(const SetOfString&); void builtinElement(const char*); void builtinElements(const SetOfString&); void builtinAttribute(const char*); void builtinAttributes(const SetOfString&); const SetOfString& builtinTypes() const; const SetOfString& builtinElements() const; const SetOfString& builtinAttributes() const; friend ostream& operator<<(ostream&, const wsdl__definitions&); friend istream& operator>>(istream&, wsdl__definitions&); }; extern ostream &operator<<(ostream &o, const wsdl__definitions &e); extern istream &operator>>(istream &i, wsdl__definitions &e);