0
|
1 /*
|
|
2 http.h
|
|
3
|
|
4 WSDL/HTTP binding schema interface
|
|
5
|
|
6 --------------------------------------------------------------------------------
|
|
7 gSOAP XML Web services tools
|
|
8 Copyright (C) 2000-2012, Robert van Engelen, Genivia Inc. All Rights Reserved.
|
|
9 This software is released under one of the following licenses:
|
|
10 GPL or Genivia's license for commercial use.
|
|
11 --------------------------------------------------------------------------------
|
|
12 GPL license.
|
|
13
|
|
14 This program is free software; you can redistribute it and/or modify it under
|
|
15 the terms of the GNU General Public License as published by the Free Software
|
|
16 Foundation; either version 2 of the License, or (at your option) any later
|
|
17 version.
|
|
18
|
|
19 This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
20 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
21 PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
22
|
|
23 You should have received a copy of the GNU General Public License along with
|
|
24 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
25 Place, Suite 330, Boston, MA 02111-1307 USA
|
|
26
|
|
27 Author contact information:
|
|
28 engelen@genivia.com / engelen@acm.org
|
|
29 --------------------------------------------------------------------------------
|
|
30 A commercial use license is available from Genivia, Inc., contact@genivia.com
|
|
31 --------------------------------------------------------------------------------
|
|
32 */
|
|
33
|
|
34 //gsoap http schema documentation: WSDL 1.1 HTTP binding schema
|
|
35 //gsoap http schema namespace: http://schemas.xmlsoap.org/wsdl/http/
|
|
36
|
|
37 //gsoap whttp schema documentation: WSDL 2.0 HTTP binding schema
|
|
38 //gsoap whttp schema namespace: http://www.w3.org/ns/wsdl/http
|
|
39
|
|
40 #import "imports.h"
|
|
41
|
|
42 class http__address
|
|
43 { public:
|
|
44 @xsd__anyURI location;
|
|
45 };
|
|
46
|
|
47 class http__binding
|
|
48 { public:
|
|
49 @xsd__NMTOKEN verb;
|
|
50 };
|
|
51
|
|
52 class http__operation
|
|
53 { public:
|
|
54 @xsd__anyURI location;
|
|
55 };
|
|
56
|
|
57 class whttp__header
|
|
58 { public:
|
|
59 @xsd__string name;
|
|
60 @xsd__QName type;
|
|
61 @xsd__boolean required = false;
|
|
62 };
|