Author: dkulp
Date: Fri May 31 16:07:33 2013
New Revision: 1488293

URL: http://svn.apache.org/r1488293
Log:
Add resorces I forgot to add

Added:
    cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/
    cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/log4j.properties
    cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/logging.properties
    cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/
    
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/
    
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/bar.xsd
    
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/folder
 with spaces/
    
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/folder
 with spaces/bar.xsd
    
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/foo.xsd
    cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/wsdl/
    
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/wsdl/test-conf.xjb
    
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/wsdl/test-conf.xsd
    cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/
    cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/folder with 
spaces/
    cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/folder with 
spaces/foo.wsdl
    cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/foo.wsdl
    cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/test_ext.wsdl
    
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/test_ext_remapped.wsdl

Added: cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/log4j.properties
URL: 
http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/log4j.properties?rev=1488293&view=auto
==============================================================================
--- cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/log4j.properties 
(added)
+++ cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/log4j.properties Fri 
May 31 16:07:33 2013
@@ -0,0 +1,30 @@
+#
+#
+#    Licensed to the Apache Software Foundation (ASF) under one
+#    or more contributor license agreements. See the NOTICE file
+#    distributed with this work for additional information
+#    regarding copyright ownership. The ASF licenses this file
+#    to you under the Apache License, Version 2.0 (the
+#    "License"); you may not use this file except in compliance
+#    with the License. You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+#    Unless required by applicable law or agreed to in writing,
+#    software distributed under the License is distributed on an
+#    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#    KIND, either express or implied. See the License for the
+#    specific language governing permissions and limitations
+#    under the License.
+#
+#
+
+# Global logging configuration
+log4j.rootLogger=WARN, stdout
+
+log4j.logger.org.springframework.security=DEBUG, stdout
+
+# Console output...
+log4j.appender.stdout=org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
+log4j.appender.stdout.layout.conversionPattern=[%p,%c{1},%t] %m%n

Added: cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/logging.properties
URL: 
http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/logging.properties?rev=1488293&view=auto
==============================================================================
--- cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/logging.properties 
(added)
+++ cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/logging.properties 
Fri May 31 16:07:33 2013
@@ -0,0 +1,74 @@
+#
+#
+#    Licensed to the Apache Software Foundation (ASF) under one
+#    or more contributor license agreements. See the NOTICE file
+#    distributed with this work for additional information
+#    regarding copyright ownership. The ASF licenses this file
+#    to you under the Apache License, Version 2.0 (the
+#    "License"); you may not use this file except in compliance
+#    with the License. You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+#    Unless required by applicable law or agreed to in writing,
+#    software distributed under the License is distributed on an
+#    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#    KIND, either express or implied. See the License for the
+#    specific language governing permissions and limitations
+#    under the License.
+#
+#
+############################################################
+#      Default Logging Configuration File
+#
+# You can use a different file by specifying a filename
+# with the java.util.logging.config.file system property.  
+# For example java -Djava.util.logging.config.file=myfile
+############################################################
+
+############################################################
+#      Global properties
+############################################################
+
+# "handlers" specifies a comma separated list of log Handler 
+# classes.  These handlers will be installed during VM startup.
+# Note that these classes must be on the system classpath.
+# By default we only configure a ConsoleHandler, which will only
+# show messages at the INFO and above levels.
+#handlers= java.util.logging.ConsoleHandler
+
+# To also add the FileHandler, use the following line instead.
+#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
+
+# Default global logging level.
+# This specifies which kinds of events are logged across
+# all loggers.  For any given facility this global level
+# can be overriden by a facility specific level
+# Note that the ConsoleHandler also has a separate level
+# setting to limit messages printed to the console.
+.level= INFO
+
+############################################################
+# Handler specific properties.
+# Describes specific configuration info for Handlers.
+############################################################
+
+# default file output is in user's home directory.
+java.util.logging.FileHandler.pattern = %h/java%u.log
+java.util.logging.FileHandler.limit = 50000
+java.util.logging.FileHandler.count = 1
+java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
+
+# Limit the message that are printed on the console to INFO and above.
+java.util.logging.ConsoleHandler.level = WARNING
+java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
+
+
+############################################################
+# Facility specific properties.
+# Provides extra control for each logger.
+############################################################
+
+# For example, set the com.xyz.foo logger to only log SEVERE
+# messages:
+#com.xyz.foo.level = SEVERE

Added: 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/bar.xsd
URL: 
http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/bar.xsd?rev=1488293&view=auto
==============================================================================
--- 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/bar.xsd
 (added)
+++ 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/bar.xsd
 Fri May 31 16:07:33 2013
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+ 
+  http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema";
+       targetNamespace="urn:RelPath" xmlns:RP="urn:RelPath"
+       elementFormDefault="qualified">
+       <xs:complexType name="RPTest1CT_In">
+               <xs:sequence>
+                       <xs:element name="RPTest1_CT_String" type="xs:string">
+                       </xs:element>
+               </xs:sequence>
+       </xs:complexType>
+
+       <xs:complexType name="RPTest1CT_Out">
+               <xs:sequence>
+                       <xs:element name="RPTest1_Ele_String" type="xs:string">
+                       </xs:element>
+               </xs:sequence>
+       </xs:complexType>
+
+</xs:schema>
\ No newline at end of file

Added: 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/folder
 with spaces/bar.xsd
URL: 
http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/folder%20with%20spaces/bar.xsd?rev=1488293&view=auto
==============================================================================
--- 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/folder
 with spaces/bar.xsd (added)
+++ 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/folder
 with spaces/bar.xsd Fri May 31 16:07:33 2013
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+ 
+  http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema";
+       targetNamespace="urn:RelPath" xmlns:RP="urn:RelPath"
+       elementFormDefault="qualified">
+       <xs:complexType name="RPTest1CT_In">
+               <xs:sequence>
+                       <xs:element name="RPTest1_CT_String" type="xs:string">
+                       </xs:element>
+               </xs:sequence>
+       </xs:complexType>
+
+       <xs:complexType name="RPTest1CT_Out">
+               <xs:sequence>
+                       <xs:element name="RPTest1_Ele_String" type="xs:string">
+                       </xs:element>
+               </xs:sequence>
+       </xs:complexType>
+
+</xs:schema>
\ No newline at end of file

Added: 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/foo.xsd
URL: 
http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/foo.xsd?rev=1488293&view=auto
==============================================================================
--- 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/foo.xsd
 (added)
+++ 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/configuration/foo.xsd
 Fri May 31 16:07:33 2013
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+ 
+  http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"; 
xmlns:tns="http://cxf.apache.org/configuration/foo"; 
targetNamespace="http://cxf.apache.org/configuration/foo"; 
elementFormDefault="qualified">
+
+    <xs:complexType name="foo">        
+        <xs:sequence>
+            <xs:element name="position" type="tns:point" minOccurs="0"/>
+            <xs:element name="address" type="tns:address" minOccurs="0"/>
+            <xs:element name="name" type="xs:string" minOccurs="0"/>
+            <xs:element name="intDefault" type="xs:int" default="22" 
minOccurs="0"/>
+            <xs:element name="intNoDefault" type="xs:int" minOccurs="0"/>
+        </xs:sequence>
+    </xs:complexType>
+    
+    <xs:complexType name="point">
+        <xs:sequence>
+            <xs:element name="x" type="xs:int"></xs:element>
+            <xs:element name="y" type="xs:int"></xs:element>
+        </xs:sequence>
+    </xs:complexType>
+    
+    <xs:complexType name="address">
+        <xs:sequence>
+            <xs:element name="city" type="xs:string"></xs:element>
+            <xs:element name="zip" type="xs:int"></xs:element>
+            <xs:element name="street" type="xs:string"></xs:element>
+            <xs:element name="nr" type="xs:int" minOccurs="0"></xs:element>
+        </xs:sequence>
+    </xs:complexType> 
+    
+    <xs:element name="point" type="tns:point"/>
+    <xs:element name="address" type="tns:address"/>
+    <xs:element name="foo" type="tns:foo"/>   
+        
+</xs:schema>

Added: 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/wsdl/test-conf.xjb
URL: 
http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/wsdl/test-conf.xjb?rev=1488293&view=auto
==============================================================================
--- 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/wsdl/test-conf.xjb
 (added)
+++ 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/wsdl/test-conf.xjb
 Fri May 31 16:07:33 2013
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+ 
+  http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<jaxb:bindings version="1.0" 
+  xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"; 
+  xmlns:xs="http://www.w3.org/2001/XMLSchema"; 
+  xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc"; 
+  jaxb:extensionBindingPrefixes="xjc">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/"; 
node="/xs:schema">
+        <jaxb:schemaBindings>
+            <jaxb:package name="org.apache.cxf.wsdl"/>
+        </jaxb:schemaBindings>
+        <jaxb:globalBindings generateIsSetMethod="true"/>
+    </jaxb:bindings>
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/"; 
node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+        <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
+    </jaxb:bindings>
+</jaxb:bindings>

Added: 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/wsdl/test-conf.xsd
URL: 
http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/wsdl/test-conf.xsd?rev=1488293&view=auto
==============================================================================
--- 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/wsdl/test-conf.xsd
 (added)
+++ 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/schemas/wsdl/test-conf.xsd
 Fri May 31 16:07:33 2013
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+ 
+  http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"; 
+           targetNamespace="http://cxf.apache.org/abc/test"; 
+           xmlns:tns="http://cxf.apache.org/abc/test"; 
+           xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"; 
+           elementFormDefault="qualified" 
+           attributeFormDefault="unqualified"> 
+
+    <xs:import namespace="http://schemas.xmlsoap.org/wsdl/"; 
schemaLocation="http://schemas.xmlsoap.org/wsdl/"/>
+    
+    <xs:complexType name="TestPolicyType">
+        <xs:annotation>
+            <xs:documentation>a test policy</xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="wsdl:tExtensibilityElement">
+                <xs:attribute name="intAttr" type="xs:int" default="20"/>
+                <xs:attribute name="stringAttr" type="xs:string" 
default="cxf"/>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+    <xs:element name="testPolicy" type="tns:TestPolicyType"/>
+    
+    <xs:complexType name="AnotherPolicyType">
+        <xs:annotation>
+            <xs:documentation>another policy</xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="wsdl:tExtensibilityElement">
+                <xs:attribute name="floatAttr" type="xs:float" default="0.1"/>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+    <xs:element name="anotherPolicy" type="tns:AnotherPolicyType"/>
+    
+    <xs:complexType name="struct">
+        <xs:sequence>
+            <xs:element name="member" type="tns:memberType" minOccurs="0" 
maxOccurs="unbounded"/>
+            <xs:element name="struct" type="tns:struct" minOccurs="0" 
maxOccurs="unbounded"/>
+        </xs:sequence>
+        <xs:attribute name="name" type="xs:string" use="required"/>
+    </xs:complexType>
+
+    <xs:complexType name="memberType">
+        <xs:attribute name="name" type="xs:string" use="required"/>
+    </xs:complexType>
+
+    <xs:element name="newService" type="tns:newServiceType"/>
+
+    <xs:complexType name="newServiceType">
+        <xs:complexContent>
+            <xs:extension base="wsdl:tExtensibilityElement">
+                <xs:sequence>
+                    <xs:element name="struct" type="tns:struct" 
maxOccurs="unbounded"/>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+</xs:schema>

Added: cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/folder with 
spaces/foo.wsdl
URL: 
http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/folder%20with%20spaces/foo.wsdl?rev=1488293&view=auto
==============================================================================
--- cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/folder with 
spaces/foo.wsdl (added)
+++ cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/folder with 
spaces/foo.wsdl Fri May 31 16:07:33 2013
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+ 
+  http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";
+       xmlns:tns="http://www.example.org/RelPathDocLit/"; 
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/";
+       xmlns:xsd="http://www.w3.org/2001/XMLSchema"; name="RelPathDocLit"
+       targetNamespace="http://www.example.org/RelPathDocLit/"; 
xmlns:xsd1="urn:RelPath">
+       <wsdl:types>
+               <xsd:schema 
targetNamespace="http://www.example.org/RelPathDocLit/";>
+                       <xsd:element name="NewOperation">
+                               <xsd:complexType>
+                                       <xsd:sequence>
+                                               <xsd:element name="in" 
type="xsd:string" />
+                                       </xsd:sequence>
+                               </xsd:complexType>
+                       </xsd:element>
+                       <xsd:element name="NewOperationResponse">
+                               <xsd:complexType>
+                                       <xsd:sequence>
+                                               <xsd:element name="out" 
type="xsd:string" />
+                                       </xsd:sequence>
+                               </xsd:complexType>
+                       </xsd:element>
+               </xsd:schema>
+               <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
+                       <xsd:import namespace="urn:RelPath" 
schemaLocation="../schemas/configuration/bar.xsd">
+                       </xsd:import>
+               </xsd:schema>
+       </wsdl:types>
+       <wsdl:message name="RelPathOperationRequest">
+               <wsdl:part name="parameters" type="xsd1:RPTest1CT_In" />
+       </wsdl:message>
+       <wsdl:message name="RelPathOperationResponse">
+               <wsdl:part name="parameters" type="xsd1:RPTest1CT_Out" />
+       </wsdl:message>
+       <wsdl:portType name="RelPathDocLit">
+               <wsdl:operation name="RelPathOperation">
+                       <wsdl:input message="tns:RelPathOperationRequest" />
+                       <wsdl:output message="tns:RelPathOperationResponse" />
+               </wsdl:operation>
+       </wsdl:portType>
+       <wsdl:binding name="RelPathDocLitSOAP" type="tns:RelPathDocLit">
+               <soap:binding style="document"
+                       transport="http://schemas.xmlsoap.org/soap/http"; />
+               <wsdl:operation name="RelPathOperation">
+                       <soap:operation 
soapAction="http://www.example.org/RelPathDocLit/RelPathOperation"; />
+                       <wsdl:input>
+                               <soap:body use="literal" />
+                       </wsdl:input>
+                       <wsdl:output>
+                               <soap:body use="literal" />
+                       </wsdl:output>
+               </wsdl:operation>
+       </wsdl:binding>
+       <wsdl:service name="RelPathDocLit">
+               <wsdl:port binding="tns:RelPathDocLitSOAP" 
name="RelPathDocLitSOAP">
+                       <soap:address 
location="http://localhost:2580/process/RelPathDocLit"; />
+               </wsdl:port>
+       </wsdl:service>
+</wsdl:definitions>

Added: cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/foo.wsdl
URL: 
http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/foo.wsdl?rev=1488293&view=auto
==============================================================================
--- cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/foo.wsdl (added)
+++ cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/foo.wsdl Fri 
May 31 16:07:33 2013
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+ 
+  http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";
+       xmlns:tns="http://www.example.org/RelPathDocLit/"; 
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/";
+       xmlns:xsd="http://www.w3.org/2001/XMLSchema"; name="RelPathDocLit"
+       targetNamespace="http://www.example.org/RelPathDocLit/"; 
xmlns:xsd1="urn:RelPath">
+       <wsdl:types>
+               <xsd:schema 
targetNamespace="http://www.example.org/RelPathDocLit/";>
+                       <xsd:element name="NewOperation">
+                               <xsd:complexType>
+                                       <xsd:sequence>
+                                               <xsd:element name="in" 
type="xsd:string" />
+                                       </xsd:sequence>
+                               </xsd:complexType>
+                       </xsd:element>
+                       <xsd:element name="NewOperationResponse">
+                               <xsd:complexType>
+                                       <xsd:sequence>
+                                               <xsd:element name="out" 
type="xsd:string" />
+                                       </xsd:sequence>
+                               </xsd:complexType>
+                       </xsd:element>
+               </xsd:schema>
+               <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
+                       <xsd:import namespace="urn:RelPath" 
schemaLocation="../schemas/configuration/bar.xsd">
+                       </xsd:import>
+               </xsd:schema>
+       </wsdl:types>
+       <wsdl:message name="RelPathOperationRequest">
+               <wsdl:part name="parameters" type="xsd1:RPTest1CT_In" />
+       </wsdl:message>
+       <wsdl:message name="RelPathOperationResponse">
+               <wsdl:part name="parameters" type="xsd1:RPTest1CT_Out" />
+       </wsdl:message>
+       <wsdl:portType name="RelPathDocLit">
+               <wsdl:operation name="RelPathOperation">
+                       <wsdl:input message="tns:RelPathOperationRequest" />
+                       <wsdl:output message="tns:RelPathOperationResponse" />
+               </wsdl:operation>
+       </wsdl:portType>
+       <wsdl:binding name="RelPathDocLitSOAP" type="tns:RelPathDocLit">
+               <soap:binding style="document"
+                       transport="http://schemas.xmlsoap.org/soap/http"; />
+               <wsdl:operation name="RelPathOperation">
+                       <soap:operation 
soapAction="http://www.example.org/RelPathDocLit/RelPathOperation"; />
+                       <wsdl:input>
+                               <soap:body use="literal" />
+                       </wsdl:input>
+                       <wsdl:output>
+                               <soap:body use="literal" />
+                       </wsdl:output>
+               </wsdl:operation>
+       </wsdl:binding>
+       <wsdl:service name="RelPathDocLit">
+               <wsdl:port binding="tns:RelPathDocLitSOAP" 
name="RelPathDocLitSOAP">
+                       <soap:address 
location="http://localhost:2580/process/RelPathDocLit"; />
+               </wsdl:port>
+       </wsdl:service>
+</wsdl:definitions>

Added: cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/test_ext.wsdl
URL: 
http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/test_ext.wsdl?rev=1488293&view=auto
==============================================================================
--- cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/test_ext.wsdl 
(added)
+++ cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/test_ext.wsdl 
Fri May 31 16:07:33 2013
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+ 
+  http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<definitions name="HelloWorldService" 
+    targetNamespace="http://cxf.apache.org/test/hello_world"; 
+    xmlns="http://schemas.xmlsoap.org/wsdl/"; 
+    xmlns:test="http://cxf.apache.org/abc/test"; 
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; 
+    xmlns:tns="http://cxf.apache.org/test/hello_world"; 
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
+
+    <test:newService name="testDefinitionExtensibility">
+        <test:struct name="testString1">
+            <test:member name="x" />
+            <test:member name="y" />
+            <test:member name="z" />
+        </test:struct>
+        <test:struct name="testString2">
+            <test:member name="x" />
+            <test:member name="y" />
+            <test:member name="z" />
+            <test:struct name="innerTestString1">
+                <test:member name="x" />
+                <test:member name="y" />
+                <test:member name="z" />
+            </test:struct>
+        </test:struct>
+    </test:newService>
+
+    <message name="greetMe">
+        <part name="stringParam0" type="xsd:string"/>
+    </message>
+    <message name="greetMeResponse">
+        <part name="return" type="xsd:string"/>
+    </message>
+    
+    <portType name="HelloWorldPortType">
+        <operation name="greetMe">
+            <input message="tns:greetMe" name="greetMe"/>
+            <output message="tns:greetMeResponse" name="greetMeResponse"/>
+        </operation>
+    </portType>
+       
+    <binding name="HelloWorldBinding" type="tns:HelloWorldPortType">
+        <soap:binding style="rpc" 
transport="http://cxf.apache.org/transports/jms"/>
+        <operation name="greetMe">
+            <soap:operation soapAction="" style="rpc"/>
+            <input name="greetMe">
+                <soap:body 
+                    namespace="http://cxf.apache.org/hello_world_jms"; 
use="literal"/>
+            </input>
+            <output name="greetMeResponse">
+                <soap:body  
+                    namespace="http://cxf.apache.org/hello_world_jms"; 
use="literal"/>
+            </output>
+        </operation>
+    </binding>    
+        
+    <service name="HelloWorldService">
+        <port binding="tns:HelloWorldBinding" name="HelloWorldPort">
+            <test:testPolicy
+                intAttr="30" stringAttr="hello"/>
+            <test:anotherPolicy/>
+        </port>
+    </service>
+       
+</definitions>
+
+

Added: 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/test_ext_remapped.wsdl
URL: 
http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/test_ext_remapped.wsdl?rev=1488293&view=auto
==============================================================================
--- 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/test_ext_remapped.wsdl
 (added)
+++ 
cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/test/resources/wsdl/test_ext_remapped.wsdl
 Fri May 31 16:07:33 2013
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+ 
+  http://www.apache.org/licenses/LICENSE-2.0
+ 
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<definitions name="HelloWorldService" 
+    targetNamespace="http://cxf.apache.org/test/hello_world"; 
+    xmlns="http://schemas.xmlsoap.org/wsdl/"; 
+    xmlns:test="http://cxf.apache.org/abc/test/remapped"; 
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; 
+    xmlns:tns="http://cxf.apache.org/test/hello_world"; 
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
+
+    <test:newService name="testDefinitionExtensibility">
+        <test:struct name="testString1">
+            <test:member name="x" />
+            <test:member name="y" />
+            <test:member name="z" />
+        </test:struct>
+        <test:struct name="testString2">
+            <test:member name="x" />
+            <test:member name="y" />
+            <test:member name="z" />
+            <test:struct name="innerTestString1">
+                <test:member name="x" />
+                <test:member name="y" />
+                <test:member name="z" />
+            </test:struct>
+        </test:struct>
+    </test:newService>
+
+    <message name="greetMe">
+        <part name="stringParam0" type="xsd:string"/>
+    </message>
+    <message name="greetMeResponse">
+        <part name="return" type="xsd:string"/>
+    </message>
+    
+    <portType name="HelloWorldPortType">
+        <operation name="greetMe">
+            <input message="tns:greetMe" name="greetMe"/>
+            <output message="tns:greetMeResponse" name="greetMeResponse"/>
+        </operation>
+    </portType>
+       
+    <binding name="HelloWorldBinding" type="tns:HelloWorldPortType">
+        <soap:binding style="rpc" 
transport="http://cxf.apache.org/transports/jms"/>
+        <operation name="greetMe">
+            <soap:operation soapAction="" style="rpc"/>
+            <input name="greetMe">
+                <soap:body 
+                    namespace="http://cxf.apache.org/hello_world_jms"; 
use="literal"/>
+            </input>
+            <output name="greetMeResponse">
+                <soap:body  
+                    namespace="http://cxf.apache.org/hello_world_jms"; 
use="literal"/>
+            </output>
+        </operation>
+    </binding>    
+        
+    <service name="HelloWorldService">
+        <port binding="tns:HelloWorldBinding" name="HelloWorldPort">
+            <test:testPolicy
+                intAttr="30" stringAttr="hello"/>
+            <test:anotherPolicy/>
+        </port>
+    </service>
+       
+</definitions>
+
+


Reply via email to