diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-18 11:10:18 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-18 11:10:18 +0000 |
commit | c92043183c565c3e7c5f15aa7c6bc53b07e375f1 (patch) | |
tree | 80f8352e7612adc1ada88350438d28ff93b60e31 /lib/wsdl/xmlSchema | |
parent | e3e4d08f7fb077103dd74825d069b3eb0d08d6b0 (diff) | |
download | ruby-c92043183c565c3e7c5f15aa7c6bc53b07e375f1.tar.gz ruby-c92043183c565c3e7c5f15aa7c6bc53b07e375f1.tar.xz ruby-c92043183c565c3e7c5f15aa7c6bc53b07e375f1.zip |
* lib/soap/wsdlDriver.rb, lib/wsdl/soap/operation.rb: add support of
"parts" attribute of soap:body element in WSDL.
* lib/wsdl/xmlSchema/schema.rb: friendly warning message for
simpleType element which is not supported for now.
* test/wsdl/soap/{soapbodyparts.wsdl,test_soapbodyparts.wsdl}: new
files.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5488 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/wsdl/xmlSchema')
-rw-r--r-- | lib/wsdl/xmlSchema/schema.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/wsdl/xmlSchema/schema.rb b/lib/wsdl/xmlSchema/schema.rb index 1d7759605..b2a195d41 100644 --- a/lib/wsdl/xmlSchema/schema.rb +++ b/lib/wsdl/xmlSchema/schema.rb @@ -43,6 +43,9 @@ class Schema < Info o = ComplexType.new @complextypes << o o + when SimpleTypeName + STDERR.puts("Restriction of basetype with simpleType definition is ignored for now.") + nil when ElementName o = Element.new @elements << o |