Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

root/branches/1_5/lib/wsdl/soap/data.rb

Revision 1824, 1.3 kB (checked in by nahi, 2 years ago)
  • Copyright notice updated. add '2000-2007' uniformly.
  • Property svn:eol-style set to native
  • Property svn:keywords set to author date id revision
Line 
1 # WSDL4R - WSDL SOAP binding data definitions.
2 # Copyright (C) 2000-2007  NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
4 # This program is copyrighted free software by NAKAMURA, Hiroshi.  You can
5 # redistribute it and/or modify it under the same terms of Ruby's license;
6 # either the dual license version in 2003, or any later version.
7
8
9 require 'xsd/qname'
10 require 'wsdl/soap/definitions'
11 require 'wsdl/soap/binding'
12 require 'wsdl/soap/operation'
13 require 'wsdl/soap/body'
14 require 'wsdl/soap/element'
15 require 'wsdl/soap/header'
16 require 'wsdl/soap/headerfault'
17 require 'wsdl/soap/fault'
18 require 'wsdl/soap/address'
19 require 'wsdl/soap/complexType'
20
21
22 module WSDL
23 module SOAP
24
25
26 HeaderFaultName = XSD::QName.new(SOAPBindingNamespace, 'headerfault')
27
28 LocationAttrName = XSD::QName.new(nil, 'location')
29 StyleAttrName = XSD::QName.new(nil, 'style')
30 TransportAttrName = XSD::QName.new(nil, 'transport')
31 UseAttrName = XSD::QName.new(nil, 'use')
32 PartsAttrName = XSD::QName.new(nil, 'parts')
33 PartAttrName = XSD::QName.new(nil, 'part')
34 NameAttrName = XSD::QName.new(nil, 'name')
35 MessageAttrName = XSD::QName.new(nil, 'message')
36 EncodingStyleAttrName = XSD::QName.new(nil, 'encodingStyle')
37 NamespaceAttrName = XSD::QName.new(nil, 'namespace')
38 SOAPActionAttrName = XSD::QName.new(nil, 'soapAction')
39
40
41 end
42 end
Note: See TracBrowser for help on using the browser.