stevel 2002/10/21 15:40:07
Modified: java/wsdd WSDD.xsd
Log:
1. for utf-8 we dont need any encoding prefix, I believe
2. s/value/default/
xml spy still aint happy because it doesnt thing xs:CDATA is a valid part of XML
schema. Maybe it is right.
Revision Changes Path
1.5 +2 -2 xml-axis/java/wsdd/WSDD.xsd
Index: WSDD.xsd
===================================================================
RCS file: /home/cvs/xml-axis/java/wsdd/WSDD.xsd,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- WSDD.xsd 21 Aug 2002 19:37:28 -0000 1.4
+++ WSDD.xsd 21 Oct 2002 22:40:06 -0000 1.5
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="UTF-8" ?>
+<?xml version="1.0" encoding="UTF-8" ?>
<!--//
Web Services Deployment Descriptor (WSDD) Version 1.1 (Proposal)
//-->
@@ -60,7 +60,7 @@
<xsd:any namespace="##other" processContents="lax"
minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:NCName" use="required" />
- <xsd:attribute name="locked" type="xsd:boolean" use="optional"
value="false" />
+ <xsd:attribute name="locked" type="xsd:boolean" use="optional"
default="false" />
<xsd:attribute name="value" type="xsd:CDATA" use="optional" />
<xsd:anyAttribute namespace="##other" />
</xsd:complexType>