summaryrefslogtreecommitdiffstats
path: root/test/xsd/xmlschema.xml
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-14 15:14:02 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-14 15:14:02 +0000
commit7797cbbe3dfd5be7ca7ff33b0c69a04f941243d1 (patch)
tree559f6780e94880fc3e7c37678fbe8b49ff0556d7 /test/xsd/xmlschema.xml
parent7767638d90e56f7d9b7355bc485ca26da64dfe7b (diff)
downloadruby-7797cbbe3dfd5be7ca7ff33b0c69a04f941243d1.tar.gz
ruby-7797cbbe3dfd5be7ca7ff33b0c69a04f941243d1.tar.xz
ruby-7797cbbe3dfd5be7ca7ff33b0c69a04f941243d1.zip
* lib/soap/baseData.rb: Introduce SOAPType as the common ancestor of
SOAPBasetype and SOAPCompoundtype. * lib/soap/generator.rb, lib/soap/element.rb, lib/soap/encodingstyle/*: Encoding methods signature change. Pass SOAPGenerator as a parameter. * lib/soap/mapping/*, test/soap/marshal/test_marshal.rb: Refactoring for better marshalling/unmarshalling support. Now I think SOAP marshaller supports all kind of object graph which is supported by Ruby's original marshaller. Of course there could be bugs as always. Find it. :-) * lib/soap/rpc/standaloneServer.rb: Set severity threshould to INFO. DEBUG is too noisy. * lib/xsd/datatypes.rb: DateTime#of is obsoleted. Use DateTime#offset. * test/wsdl/emptycomplextype.wsdl, test/xsd/xmlschema.xml: Avoid useless warning. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4760 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/xsd/xmlschema.xml')
-rw-r--r--test/xsd/xmlschema.xml13
1 files changed, 10 insertions, 3 deletions
diff --git a/test/xsd/xmlschema.xml b/test/xsd/xmlschema.xml
index f532e2934..0e9914e64 100644
--- a/test/xsd/xmlschema.xml
+++ b/test/xsd/xmlschema.xml
@@ -1,8 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
-<xs:schema xmlns:mstns="http://www.winfessor.com/SoapBoxWebService/MessageDataSet.xsd" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns="http://www.winfessor.com/SoapBoxWebService/MessageDataSet.xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://www.winfessor.com/SoapBoxWebService/MessageDataSet.xsd" id="MessageDataSet" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:element msdata:IsDataSet="true" name="MessageDataSet">
+<xs:schema
+ xmlns:mstns="http://www.winfessor.com/SoapBoxWebService/MessageDataSet.xsd"
+ xmlns="http://www.winfessor.com/SoapBoxWebService/MessageDataSet.xsd"
+ attributeFormDefault="qualified"
+ elementFormDefault="qualified"
+ targetNamespace="http://www.winfessor.com/SoapBoxWebService/MessageDataSet.xsd"
+ id="MessageDataSet"
+ xmlns:xs="http://www.w3.org/2001/XMLSchema">
+ <xs:element name="MessageDataSet">
<xs:complexType>
<xs:choice maxOccurs="unbounded" />
</xs:complexType>
</xs:element>
-</xs:schema> \ No newline at end of file
+</xs:schema>