Trying to reproduce SWS-176

This commit is contained in:
Arjen Poutsma
2007-09-21 08:49:39 +00:00
parent b3c9cb7a63
commit ec664693b8
7 changed files with 63 additions and 25 deletions

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<multipleSchemas1 xmlns="http://www.springframework.org/spring-ws/test/multipleSchemas1">abc</multipleSchemas1>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.springframework.org/spring-ws/test/multipleSchemas1"
elementFormDefault="qualified">
<element name="multipleSchemas1">
<simpleType>
<restriction base="string">
<pattern value="[a-c]+"/>
</restriction>
</simpleType>
</element>
</schema>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<multipleSchemas2 xmlns="http://www.springframework.org/spring-ws/test/multipleSchemas2">123</multipleSchemas2>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.springframework.org/spring-ws/test/multipleSchemas2"
elementFormDefault="qualified">
<element name="multipleSchemas2">
<simpleType>
<restriction base="string">
<pattern value="[1-3]+"/>
</restriction>
</simpleType>
</element>
</schema>