This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new bf25635  CXF-8429: Illegal reflective access in 
XercesSchemaValidationUtils (fixing type_test.xsd types)
bf25635 is described below

commit bf256350ed640a8c9ebeb37145bb0526833190ee
Author: reta <[email protected]>
AuthorDate: Sat Mar 6 15:39:45 2021 -0500

    CXF-8429: Illegal reflective access in XercesSchemaValidationUtils (fixing 
type_test.xsd types)
---
 .../src/main/resources/wsdl/type_test/type_test.xsd  | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/testutils/src/main/resources/wsdl/type_test/type_test.xsd 
b/testutils/src/main/resources/wsdl/type_test/type_test.xsd
index e1fc688..785f4db 100644
--- a/testutils/src/main/resources/wsdl/type_test/type_test.xsd
+++ b/testutils/src/main/resources/wsdl/type_test/type_test.xsd
@@ -99,16 +99,16 @@
   <itst:it_test_group ID="1">
 
     <!-- Nillable elements -->
-    <element name="NillableString" type="string" nillable="true"/>
+    <element name="NillableString" type="xsd:string" nillable="true"/>
     <element name="NillableStruct" type="x1:SimpleStruct" nillable="true"/>
 
     <!-- Anonymous type elements -->
     <element name="AnonTypeElement">
         <complexType>
             <sequence>
-                <element name="varFloat" type="float"/>
-                <element name="varInt" type="int"/>
-                <element name="varString" type="string"/>
+                <element name="varFloat" type="xsd:float"/>
+                <element name="varInt" type="xsd:int"/>
+                <element name="varString" type="xsd:string"/>
             </sequence>
         </complexType>
     </element>
@@ -118,9 +118,9 @@
     <element itst:it_no_test="true" name="AnonTypeElementQualified">
         <complexType>
             <sequence>
-                <element name="varFloat" type="float"/>
-                <element name="varInt" type="int"/>
-                <element name="varString" type="string"/>
+                <element name="varFloat" type="xsd:float"/>
+                <element name="varInt" type="xsd:int"/>
+                <element name="varString" type="xsd:string"/>
             </sequence>
         </complexType>
     </element>
@@ -686,9 +686,9 @@
 
     <complexType name="SimpleChoice">
         <choice>
-            <element name="varFloat" type="float"/>
-            <element name="varInt" type="int"/>
-            <element name="varString" type="string"/>
+            <element name="varFloat" type="xsd:float"/>
+            <element name="varInt" type="xsd:int"/>
+            <element name="varString" type="xsd:string"/>
         </choice>
         <!--CORBA MAPPING BROKEN-->
         <!--attribute name="varAttrString" type="string"/-->

Reply via email to