You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2007/05/18 18:39:48 UTC

svn commit: r539517 [2/9] - in /incubator/cxf/trunk: api/src/main/java/org/apache/cxf/ api/src/main/java/org/apache/cxf/binding/ api/src/main/java/org/apache/cxf/clustering/ api/src/main/java/org/apache/cxf/endpoint/ api/src/main/java/org/apache/cxf/fe...

Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerRPCLitDefatulAnnoTest.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerRPCLitDefatulAnnoTest.java?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerRPCLitDefatulAnnoTest.java (original)
+++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerRPCLitDefatulAnnoTest.java Fri May 18 09:39:38 2007
@@ -1,67 +1,67 @@
-/**
- * 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.
- */
-
-package org.apache.cxf.systest.jaxws;
-
-import javax.xml.namespace.QName;
-import javax.xml.ws.Endpoint;
-
-import org.apache.cxf.testutil.common.AbstractBusTestServerBase;
-import org.apache.cxf.testutil.common.AbstractClientServerTestBase;
-import org.junit.BeforeClass;
-import org.junit.Test;
-
-public class ClientServerRPCLitDefatulAnnoTest extends AbstractClientServerTestBase {
-
-    public static class Server extends AbstractBusTestServerBase {
-
-        protected void run() {
-            Object implementor = new HelloImpl();
-            String address = "http://localhost:9090/hello";
-            Endpoint.publish(address, implementor);
-        }
-
-        public static void main(String[] args) {
-            try {
-                Server s = new Server();
-                s.start();
-            } catch (Exception ex) {
-                ex.printStackTrace();
-                System.exit(-1);
-            } finally {
-                System.out.println("done!");
-            }
-        }
-    }
-
-    @BeforeClass
-    public static void startServers() throws Exception {
-        assertTrue("server did not launch correctly", launchServer(Server.class));
-    }
-
-    @Test
-    public void testBasicConnection() throws Exception {
-        QName serviceName = new QName("http://cxf.apache.org/systest/jaxws/", "HelloService");
-        HelloService service = new HelloService(getClass().getResource("/wsdl/hello.wsdl"), serviceName);
-        assertNotNull(service);
-        Hello hello = service.getHelloPort();
-        assertEquals("getSayHi", hello.sayHi("SayHi"));
-
-    }
-}
+/**
+ * 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.
+ */
+
+package org.apache.cxf.systest.jaxws;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.Endpoint;
+
+import org.apache.cxf.testutil.common.AbstractBusTestServerBase;
+import org.apache.cxf.testutil.common.AbstractClientServerTestBase;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+public class ClientServerRPCLitDefatulAnnoTest extends AbstractClientServerTestBase {
+
+    public static class Server extends AbstractBusTestServerBase {
+
+        protected void run() {
+            Object implementor = new HelloImpl();
+            String address = "http://localhost:9090/hello";
+            Endpoint.publish(address, implementor);
+        }
+
+        public static void main(String[] args) {
+            try {
+                Server s = new Server();
+                s.start();
+            } catch (Exception ex) {
+                ex.printStackTrace();
+                System.exit(-1);
+            } finally {
+                System.out.println("done!");
+            }
+        }
+    }
+
+    @BeforeClass
+    public static void startServers() throws Exception {
+        assertTrue("server did not launch correctly", launchServer(Server.class));
+    }
+
+    @Test
+    public void testBasicConnection() throws Exception {
+        QName serviceName = new QName("http://cxf.apache.org/systest/jaxws/", "HelloService");
+        HelloService service = new HelloService(getClass().getResource("/wsdl/hello.wsdl"), serviceName);
+        assertNotNull(service);
+        Hello hello = service.getHelloPort();
+        assertEquals("getSayHi", hello.sayHi("SayHi"));
+
+    }
+}

Propchange: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerRPCLitDefatulAnnoTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerRPCLitDefatulAnnoTest.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/Hello.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/Hello.java?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/Hello.java (original)
+++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/Hello.java Fri May 18 09:39:38 2007
@@ -1,34 +1,34 @@
-/**
- * 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.
- */
-package org.apache.cxf.systest.jaxws;
-
-import javax.jws.WebMethod;
-import javax.jws.WebService;
-import javax.jws.soap.SOAPBinding;
-
-/**
- * This class was generated by the CXF 2.0-incubator-SNAPSHOT Thu May 17
- * 12:06:33 CST 2007 Generated source version: 2.0-incubator-SNAPSHOT
- */
-@SOAPBinding(style = SOAPBinding.Style.RPC, use = SOAPBinding.Use.LITERAL)
-@WebService(name = "Hello", targetNamespace = "http://http://cxf.apache.org/systest/jaxws")
-public interface Hello {
-    @WebMethod(operationName = "sayHi", exclude = false)
-    String sayHi(String value);
-}
+/**
+ * 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.
+ */
+package org.apache.cxf.systest.jaxws;
+
+import javax.jws.WebMethod;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+
+/**
+ * This class was generated by the CXF 2.0-incubator-SNAPSHOT Thu May 17
+ * 12:06:33 CST 2007 Generated source version: 2.0-incubator-SNAPSHOT
+ */
+@SOAPBinding(style = SOAPBinding.Style.RPC, use = SOAPBinding.Use.LITERAL)
+@WebService(name = "Hello", targetNamespace = "http://http://cxf.apache.org/systest/jaxws")
+public interface Hello {
+    @WebMethod(operationName = "sayHi", exclude = false)
+    String sayHi(String value);
+}

Propchange: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/Hello.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/Hello.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloImpl.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloImpl.java?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloImpl.java (original)
+++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloImpl.java Fri May 18 09:39:38 2007
@@ -1,36 +1,36 @@
-/**
- * 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.
- */
-package org.apache.cxf.systest.jaxws;
-import javax.jws.WebService;
-
-/**
- * This class was generated by the CXF 2.0-incubator-SNAPSHOT Thu May 17
- * 12:06:33 CST 2007 Generated source version: 2.0-incubator-SNAPSHOT
- */
-
-@WebService(name = "Hello", serviceName = "HelloService", portName = "HelloPort", 
-            targetNamespace = "http://cxf.apache.org/systest/jaxws/", 
-            wsdlLocation = "testutils/hello.wsdl", 
-            endpointInterface = "org.apache.cxf.systest.jaxws.Hello")
-public class HelloImpl implements Hello {
-    public String sayHi(String arg0) {
-        return "get" + arg0;
-    }
-
-}
+/**
+ * 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.
+ */
+package org.apache.cxf.systest.jaxws;
+import javax.jws.WebService;
+
+/**
+ * This class was generated by the CXF 2.0-incubator-SNAPSHOT Thu May 17
+ * 12:06:33 CST 2007 Generated source version: 2.0-incubator-SNAPSHOT
+ */
+
+@WebService(name = "Hello", serviceName = "HelloService", portName = "HelloPort", 
+            targetNamespace = "http://cxf.apache.org/systest/jaxws/", 
+            wsdlLocation = "testutils/hello.wsdl", 
+            endpointInterface = "org.apache.cxf.systest.jaxws.Hello")
+public class HelloImpl implements Hello {
+    public String sayHi(String arg0) {
+        return "get" + arg0;
+    }
+
+}

Propchange: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloService.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloService.java?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloService.java (original)
+++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloService.java Fri May 18 09:39:38 2007
@@ -1,49 +1,49 @@
-/**
- * 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.
- */
-package org.apache.cxf.systest.jaxws;
-
-import java.net.URL;
-
-import javax.xml.namespace.QName;
-import javax.xml.ws.Service;
-import javax.xml.ws.WebEndpoint;
-import javax.xml.ws.WebServiceClient;
-
-/**
- * This class was generated by the CXF 2.0-incubator-SNAPSHOT Thu May 17
- * 12:06:33 CST 2007 Generated source version: 2.0-incubator-SNAPSHOT
- */
-
-@WebServiceClient(name = "HelloService", 
-                  targetNamespace = "http://cxf.apache.org/systest/jaxws/", 
-                  wsdlLocation = "testutils/hello.wsdl")
-public class HelloService extends Service {
-    static final QName SERVICE = new QName("http://cxf.apache.org/systest/jaxws", "HelloService");
-    static final QName HELLO_PORT = 
-        new QName("http://cxf.apache.org/systest/jaxws/", "HelloPort");
-    public HelloService(URL wsdlLocation, QName serviceName) {
-        super(wsdlLocation, serviceName);
-    }
-
-    @WebEndpoint(name = "HelloPort")
-    public Hello getHelloPort() {
-        return (Hello)super.getPort(HELLO_PORT, Hello.class);
-    }
-
-}
+/**
+ * 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.
+ */
+package org.apache.cxf.systest.jaxws;
+
+import java.net.URL;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+
+/**
+ * This class was generated by the CXF 2.0-incubator-SNAPSHOT Thu May 17
+ * 12:06:33 CST 2007 Generated source version: 2.0-incubator-SNAPSHOT
+ */
+
+@WebServiceClient(name = "HelloService", 
+                  targetNamespace = "http://cxf.apache.org/systest/jaxws/", 
+                  wsdlLocation = "testutils/hello.wsdl")
+public class HelloService extends Service {
+    static final QName SERVICE = new QName("http://cxf.apache.org/systest/jaxws", "HelloService");
+    static final QName HELLO_PORT = 
+        new QName("http://cxf.apache.org/systest/jaxws/", "HelloPort");
+    public HelloService(URL wsdlLocation, QName serviceName) {
+        super(wsdlLocation, serviceName);
+    }
+
+    @WebEndpoint(name = "HelloPort")
+    public Hello getHelloPort() {
+        return (Hello)super.getPort(HELLO_PORT, Hello.class);
+    }
+
+}

Propchange: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloService.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/HelloService.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/management/ManagedClientServerTest.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/cxf/trunk/testutils/src/main/resources/wsdl/factory_pattern.wsdl
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello.wsdl
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello.wsdl?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello.wsdl (original)
+++ incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello.wsdl Fri May 18 09:39:38 2007
@@ -1,54 +1,54 @@
-<?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 name="HelloService" targetNamespace="http://cxf.apache.org/systest/jaxws/" xmlns:ns1="http://cxf.apache.org/systest/jaxws/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
-  <wsdl:message name="sayHi">
-    <wsdl:part name="arg0" type="xsd:string">
-    </wsdl:part>
-  </wsdl:message>
-  <wsdl:message name="sayHiResponse">
-    <wsdl:part name="return" type="xsd:string">
-    </wsdl:part>
-  </wsdl:message>
-  <wsdl:portType name="Hello">
-    <wsdl:operation name="sayHi">
-      <wsdl:input name="sayHi" message="ns1:sayHi">
-    </wsdl:input>
-      <wsdl:output name="sayHiResponse" message="ns1:sayHiResponse">
-    </wsdl:output>
-    </wsdl:operation>
-  </wsdl:portType>
-  <wsdl:binding name="HelloServiceSoapBinding" type="ns1:Hello">
-    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
-    <wsdl:operation name="sayHi">
-      <soap:operation soapAction="" style="rpc"/>
-      <wsdl:input name="sayHi">
-        <soap:body use="literal" namespace="http://cxf.apache.org/systest/jaxws/"/>
-      </wsdl:input>
-      <wsdl:output name="sayHiResponse">
-        <soap:body use="literal" namespace="http://cxf.apache.org/systest/jaxws/"/>
-      </wsdl:output>
-    </wsdl:operation>
-  </wsdl:binding>
-  <wsdl:service name="HelloService">
-    <wsdl:port name="HelloPort" binding="ns1:HelloServiceSoapBinding">
-      <soap:address location="http://localhost:9090/hello"/>
-    </wsdl:port>
-  </wsdl:service>
+<?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 name="HelloService" targetNamespace="http://cxf.apache.org/systest/jaxws/" xmlns:ns1="http://cxf.apache.org/systest/jaxws/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+  <wsdl:message name="sayHi">
+    <wsdl:part name="arg0" type="xsd:string">
+    </wsdl:part>
+  </wsdl:message>
+  <wsdl:message name="sayHiResponse">
+    <wsdl:part name="return" type="xsd:string">
+    </wsdl:part>
+  </wsdl:message>
+  <wsdl:portType name="Hello">
+    <wsdl:operation name="sayHi">
+      <wsdl:input name="sayHi" message="ns1:sayHi">
+    </wsdl:input>
+      <wsdl:output name="sayHiResponse" message="ns1:sayHiResponse">
+    </wsdl:output>
+    </wsdl:operation>
+  </wsdl:portType>
+  <wsdl:binding name="HelloServiceSoapBinding" type="ns1:Hello">
+    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
+    <wsdl:operation name="sayHi">
+      <soap:operation soapAction="" style="rpc"/>
+      <wsdl:input name="sayHi">
+        <soap:body use="literal" namespace="http://cxf.apache.org/systest/jaxws/"/>
+      </wsdl:input>
+      <wsdl:output name="sayHiResponse">
+        <soap:body use="literal" namespace="http://cxf.apache.org/systest/jaxws/"/>
+      </wsdl:output>
+    </wsdl:operation>
+  </wsdl:binding>
+  <wsdl:service name="HelloService">
+    <wsdl:port name="HelloPort" binding="ns1:HelloServiceSoapBinding">
+      <soap:address location="http://localhost:9090/hello"/>
+    </wsdl:port>
+  </wsdl:service>
 </wsdl:definitions> 

Propchange: incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello.wsdl
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello.wsdl
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: incubator/cxf/trunk/testutils/src/main/resources/wsdl/soap_header.wsdl
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/testutils/src/main/resources/wsdl/soap_header.wsdl?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/testutils/src/main/resources/wsdl/soap_header.wsdl (original)
+++ incubator/cxf/trunk/testutils/src/main/resources/wsdl/soap_header.wsdl Fri May 18 09:39:38 2007
@@ -1,171 +1,171 @@
-<?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="soap_header" targetNamespace="http://apache.org/samples/headers" 
-	     xmlns="http://schemas.xmlsoap.org/wsdl/" 
-	     xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" 
-	     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
-	     xmlns:tns="http://apache.org/samples/headers" 
-	     xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
-	     xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-    <types>
-	<schema targetNamespace="http://apache.org/samples/headers" 
-		xmlns="http://www.w3.org/2001/XMLSchema" 
-		xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
-
-	    <complexType name="SOAPHeaderData">
-		<sequence>
-		    <element maxOccurs="1" minOccurs="1" name="originator" type="string"/>
-		    <element maxOccurs="1" minOccurs="1" name="message" type="string"/>
-		</sequence>
-	    </complexType>
-	    <element name="SOAPHeaderInfo" type="tns:SOAPHeaderData"/>
-
-	    <element name="inHeader">
-		<complexType>
-		    <sequence>
-			<element name="requestType" type="xsd:string"/>
-		    </sequence>
-		</complexType>
-	    </element>
-	    <element name="inHeaderResponse">
-		<complexType>
-		    <sequence>
-			<element name="responseType" type="xsd:string"/>
-		    </sequence>
-		</complexType>
-	    </element>
-
-	    <element name="outHeader">
-		<complexType>
-		    <sequence>
-			<element name="requestType" type="xsd:string"/>
-		    </sequence>
-		</complexType>
-	    </element>
-	    <element name="outHeaderResponse">
-		<complexType>
-		    <sequence>
-			<element name="responseType" type="xsd:string"/>
-		    </sequence>
-		</complexType>
-	    </element>
-
-	    <element name="inoutHeader">
-		<complexType>
-		    <sequence>
-			<element name="requestType" type="xsd:string"/>
-		    </sequence>
-		</complexType>
-	    </element>
-	    <element name="inoutHeaderResponse">
-		<complexType>
-		    <sequence>
-			<element name="responseType" type="xsd:string"/>
-		    </sequence>
-		</complexType>
-	    </element>
-
-	</schema>
-    </types>
-
-    <message name="inHeaderRequest">
-	<part element="tns:inHeader" name="me"/>
-	<part element="tns:SOAPHeaderInfo" name="header_info"/>
-    </message>
-    <message name="inHeaderResponse">
-	<part element="tns:inHeaderResponse" name="the_response"/>
-    </message>
-    <message name="outHeaderRequest">
-	<part element="tns:outHeader" name="me"/>
-    </message>
-    <message name="outHeaderResponse">
-	<part element="tns:outHeaderResponse" name="the_response"/>
-	<part element="tns:SOAPHeaderInfo" name="header_info"/>
-    </message>
-    <message name="inoutHeaderRequest">
-	<part element="tns:inoutHeader" name="me"/>
-	<part element="tns:SOAPHeaderInfo" name="header_info"/>
-    </message>
-    <message name="inoutHeaderResponse">
-	<part element="tns:inoutHeaderResponse" name="the_response"/>
-	<part element="tns:SOAPHeaderInfo" name="header_info"/>
-    </message>
-
-    <portType name="headerTester">
-	<operation name="inHeader">
-	    <input message="tns:inHeaderRequest" name="inHeaderRequest"/>
-	    <output message="tns:inHeaderResponse" name="inHeaderResponse"/>
-	</operation>
-	<operation name="outHeader">
-	    <input message="tns:outHeaderRequest" name="outHeaderRequest"/>
-	    <output message="tns:outHeaderResponse" name="outHeaderResponse"/>
-	</operation>
-	<operation name="inoutHeader">
-	    <input message="tns:inoutHeaderRequest" name="inoutHeaderRequest"/>
-	    <output message="tns:inoutHeaderResponse" name="inoutHeaderResponse"/>
-	</operation>
-    </portType>
-
-    <binding name="headerTesterSOAPBinding" type="tns:headerTester">
-	<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
-	<operation name="inHeader">
-	    <soap:operation soapAction="" style="document"/>
-	    <input name="inHeaderRequest">
-		<soap:body parts="me" use="literal"/>
-		<soap:header message="tns:inHeaderRequest" part="header_info" 
-			     use="literal"/>
-	    </input>
-	    <output name="inHeaderResponse">
-		<soap:body use="literal"/>
-	    </output>
-	</operation>
-	<operation name="outHeader">
-	    <soap:operation soapAction="" style="document"/>
-	    <input name="outHeaderRequest">
-		<soap:body use="literal"/>
-	    </input>
-	    <output name="outHeaderResponse">
-		<soap:body parts="the_response" use="literal"/>
-		<soap:header message="tns:outHeaderResponse" part="header_info" 
-			     use="literal"/>
-	    </output>
-	</operation>
-	<operation name="inoutHeader">
-	    <soap:operation soapAction="" style="document"/>
-	    <input name="inoutHeaderRequest">
-		<soap:body parts="me" use="literal"/>
-		<soap:header message="tns:inoutHeaderRequest" part="header_info" 
-			     use="literal"/>
-	    </input>
-	    <output name="inoutHeaderResponse">
-		<soap:body parts="the_response" use="literal"/>
-		<soap:header message="tns:inoutHeaderResponse" part="header_info" 
-			     use="literal"/>
-	    </output>
-	</operation>
-    </binding>
-
-    <service name="HeaderService">
-	<port binding="tns:headerTesterSOAPBinding" name="SoapPort">
-	    <soap:address location="http://localhost:9000/headers"/>
-	</port>
-    </service>
-</definitions>
+<?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="soap_header" targetNamespace="http://apache.org/samples/headers" 
+	     xmlns="http://schemas.xmlsoap.org/wsdl/" 
+	     xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" 
+	     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
+	     xmlns:tns="http://apache.org/samples/headers" 
+	     xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+	     xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+    <types>
+	<schema targetNamespace="http://apache.org/samples/headers" 
+		xmlns="http://www.w3.org/2001/XMLSchema" 
+		xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+
+	    <complexType name="SOAPHeaderData">
+		<sequence>
+		    <element maxOccurs="1" minOccurs="1" name="originator" type="string"/>
+		    <element maxOccurs="1" minOccurs="1" name="message" type="string"/>
+		</sequence>
+	    </complexType>
+	    <element name="SOAPHeaderInfo" type="tns:SOAPHeaderData"/>
+
+	    <element name="inHeader">
+		<complexType>
+		    <sequence>
+			<element name="requestType" type="xsd:string"/>
+		    </sequence>
+		</complexType>
+	    </element>
+	    <element name="inHeaderResponse">
+		<complexType>
+		    <sequence>
+			<element name="responseType" type="xsd:string"/>
+		    </sequence>
+		</complexType>
+	    </element>
+
+	    <element name="outHeader">
+		<complexType>
+		    <sequence>
+			<element name="requestType" type="xsd:string"/>
+		    </sequence>
+		</complexType>
+	    </element>
+	    <element name="outHeaderResponse">
+		<complexType>
+		    <sequence>
+			<element name="responseType" type="xsd:string"/>
+		    </sequence>
+		</complexType>
+	    </element>
+
+	    <element name="inoutHeader">
+		<complexType>
+		    <sequence>
+			<element name="requestType" type="xsd:string"/>
+		    </sequence>
+		</complexType>
+	    </element>
+	    <element name="inoutHeaderResponse">
+		<complexType>
+		    <sequence>
+			<element name="responseType" type="xsd:string"/>
+		    </sequence>
+		</complexType>
+	    </element>
+
+	</schema>
+    </types>
+
+    <message name="inHeaderRequest">
+	<part element="tns:inHeader" name="me"/>
+	<part element="tns:SOAPHeaderInfo" name="header_info"/>
+    </message>
+    <message name="inHeaderResponse">
+	<part element="tns:inHeaderResponse" name="the_response"/>
+    </message>
+    <message name="outHeaderRequest">
+	<part element="tns:outHeader" name="me"/>
+    </message>
+    <message name="outHeaderResponse">
+	<part element="tns:outHeaderResponse" name="the_response"/>
+	<part element="tns:SOAPHeaderInfo" name="header_info"/>
+    </message>
+    <message name="inoutHeaderRequest">
+	<part element="tns:inoutHeader" name="me"/>
+	<part element="tns:SOAPHeaderInfo" name="header_info"/>
+    </message>
+    <message name="inoutHeaderResponse">
+	<part element="tns:inoutHeaderResponse" name="the_response"/>
+	<part element="tns:SOAPHeaderInfo" name="header_info"/>
+    </message>
+
+    <portType name="headerTester">
+	<operation name="inHeader">
+	    <input message="tns:inHeaderRequest" name="inHeaderRequest"/>
+	    <output message="tns:inHeaderResponse" name="inHeaderResponse"/>
+	</operation>
+	<operation name="outHeader">
+	    <input message="tns:outHeaderRequest" name="outHeaderRequest"/>
+	    <output message="tns:outHeaderResponse" name="outHeaderResponse"/>
+	</operation>
+	<operation name="inoutHeader">
+	    <input message="tns:inoutHeaderRequest" name="inoutHeaderRequest"/>
+	    <output message="tns:inoutHeaderResponse" name="inoutHeaderResponse"/>
+	</operation>
+    </portType>
+
+    <binding name="headerTesterSOAPBinding" type="tns:headerTester">
+	<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+	<operation name="inHeader">
+	    <soap:operation soapAction="" style="document"/>
+	    <input name="inHeaderRequest">
+		<soap:body parts="me" use="literal"/>
+		<soap:header message="tns:inHeaderRequest" part="header_info" 
+			     use="literal"/>
+	    </input>
+	    <output name="inHeaderResponse">
+		<soap:body use="literal"/>
+	    </output>
+	</operation>
+	<operation name="outHeader">
+	    <soap:operation soapAction="" style="document"/>
+	    <input name="outHeaderRequest">
+		<soap:body use="literal"/>
+	    </input>
+	    <output name="outHeaderResponse">
+		<soap:body parts="the_response" use="literal"/>
+		<soap:header message="tns:outHeaderResponse" part="header_info" 
+			     use="literal"/>
+	    </output>
+	</operation>
+	<operation name="inoutHeader">
+	    <soap:operation soapAction="" style="document"/>
+	    <input name="inoutHeaderRequest">
+		<soap:body parts="me" use="literal"/>
+		<soap:header message="tns:inoutHeaderRequest" part="header_info" 
+			     use="literal"/>
+	    </input>
+	    <output name="inoutHeaderResponse">
+		<soap:body parts="the_response" use="literal"/>
+		<soap:header message="tns:inoutHeaderResponse" part="header_info" 
+			     use="literal"/>
+	    </output>
+	</operation>
+    </binding>
+
+    <service name="HeaderService">
+	<port binding="tns:headerTesterSOAPBinding" name="SoapPort">
+	    <soap:address location="http://localhost:9000/headers"/>
+	</port>
+    </service>
+</definitions>

Propchange: incubator/cxf/trunk/testutils/src/main/resources/wsdl/soap_header.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/testutils/src/main/resources/wsdl/soap_header.wsdl
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/cxf/trunk/testutils/src/main/resources/wsdl/soap_header.wsdl
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: incubator/cxf/trunk/testutils/src/main/resources/wsdl/test_chars.wsdl
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/testutils/src/main/resources/wsdl/test_chars.wsdl?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/testutils/src/main/resources/wsdl/test_chars.wsdl (original)
+++ incubator/cxf/trunk/testutils/src/main/resources/wsdl/test_chars.wsdl Fri May 18 09:39:38 2007
@@ -1,138 +1,138 @@
-<?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 name="TestInterfacePort" targetNamespace="http://cxf.apache.org/test" 
-    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" 
-    xmlns:ns1="http://cxf.apache.org/test" 
-    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
-    xmlns:xsd1="http://cxf.apache.org/org.apache.cxf.test.TestInterface/xsd">
-    <wsdl:types>
-        <schema targetNamespace="http://cxf.apache.org/org.apache.cxf.test.TestInterface/xsd" 
-            xmlns="http://www.w3.org/2001/XMLSchema">
-            
-	    <simpleType name="charType">
-		<restriction base="xsd:string">
-		    <maxLength value="1"/>
-		</restriction>
-	    </simpleType>
-            <element name="getMessage" type="xsd1:charType"/>
-            <element name="getMessageResponse" type="xsd1:charType"/>
-            <element name="setMessage">
-                <simpleType>
-                    <restriction base="xsd:string">
-                        <maxLength value="1"/>
-                    </restriction>
-                </simpleType>
-            </element>
-            <element name="setMessageResponse">
-                <simpleType>
-                    <restriction base="xsd:string">
-                        <maxLength value="1"/>
-                    </restriction>
-                </simpleType>
-            </element>
-
-            <element name="charEl_x" type="xsd1:charType"/>
-            <element name="charEl_y" type="xsd1:charType"/>
-            <element name="charEl_z" type="xsd1:charType"/>
-            <element name="charEl_return">
-                <complexType>
-		    <sequence>
-			<element name="varChar" type="xsd1:charType"/>
-			<element name="varInt" type="xsd:int"/>
-			<element name="varString" type="xsd:string"/>
-		    </sequence>
-		</complexType>
-            </element>
-            
-        </schema>
-    </wsdl:types>
-    <wsdl:message name="getMessage">
-        <wsdl:part element="xsd1:getMessage" name="parameters"/>
-    </wsdl:message>
-    <wsdl:message name="getMessageResponse">
-        <wsdl:part element="xsd1:getMessageResponse" name="parameters"/>
-    </wsdl:message>
-    <wsdl:message name="setMessage">
-        <wsdl:part element="xsd1:setMessage" name="parameters"/>
-    </wsdl:message>
-    <wsdl:message name="setMessageResponse">
-        <wsdl:part element="xsd1:setMessageResponse" name="parameters"/>
-    </wsdl:message>
-    <wsdl:message name="echoChar">
-        <wsdl:part name="x" element="xsd1:charEl_x"/>
-        <wsdl:part name="y" element="xsd1:charEl_y"/>
-    </wsdl:message>
-    <wsdl:message name="echoCharResponse">
-        <wsdl:part name="return" element="xsd1:charEl_return"/>
-        <wsdl:part name="y" element="xsd1:charEl_y"/>
-        <wsdl:part name="z" element="xsd1:charEl_z"/>
-    </wsdl:message>
-    <wsdl:portType name="TestInterfacePort">
-        <wsdl:operation name="getMessage">
-            <wsdl:input message="ns1:getMessage" name="getMessage"/>
-            <wsdl:output message="ns1:getMessageResponse" name="getMessageResponse"/>
-        </wsdl:operation>
-        <wsdl:operation name="setMessage">
-            <wsdl:input message="ns1:setMessage" name="setMessage"/>
-            <wsdl:output message="ns1:setMessageResponse" name="setMessageResponse"/>
-        </wsdl:operation>
-        <wsdl:operation name="echoChar">
-            <wsdl:input message="ns1:echoChar"/>
-            <wsdl:output message="ns1:echoCharResponse"/>
-        </wsdl:operation>
-    </wsdl:portType>
-    <wsdl:binding name="TestInterfacePortSOAPBinding" type="ns1:TestInterfacePort">
-        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
-        <wsdl:operation name="getMessage">
-            <soap:operation soapAction="" style="document"/>
-            <wsdl:input name="getMessage">
-                <soap:body use="literal"/>
-            </wsdl:input>
-            <wsdl:output name="getMessageResponse">
-                <soap:body use="literal"/>
-            </wsdl:output>
-        </wsdl:operation>
-        <wsdl:operation name="setMessage">
-            <soap:operation soapAction="" style="document"/>
-            <wsdl:input name="setMessage">
-                <soap:body use="literal"/>
-            </wsdl:input>
-            <wsdl:output name="setMessageResponse">
-                <soap:body use="literal"/>
-            </wsdl:output>
-        </wsdl:operation>
-        <wsdl:operation name="echoChar">
-            <soap:operation style="document"/>
-            <wsdl:input>
-                <soap:body use="literal"/>
-            </wsdl:input>
-            <wsdl:output>
-                <soap:body use="literal"/>
-            </wsdl:output>
-        </wsdl:operation>
-    </wsdl:binding>
-    <wsdl:service name="TestService">
-        <wsdl:port binding="ns1:TestInterfacePortSOAPBinding" name="newPort">
-            <http:address location="http://localhost:9000"/>
-        </wsdl:port>
-    </wsdl:service>
-</wsdl:definitions>
+<?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 name="TestInterfacePort" targetNamespace="http://cxf.apache.org/test" 
+    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" 
+    xmlns:ns1="http://cxf.apache.org/test" 
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
+    xmlns:xsd1="http://cxf.apache.org/org.apache.cxf.test.TestInterface/xsd">
+    <wsdl:types>
+        <schema targetNamespace="http://cxf.apache.org/org.apache.cxf.test.TestInterface/xsd" 
+            xmlns="http://www.w3.org/2001/XMLSchema">
+            
+	    <simpleType name="charType">
+		<restriction base="xsd:string">
+		    <maxLength value="1"/>
+		</restriction>
+	    </simpleType>
+            <element name="getMessage" type="xsd1:charType"/>
+            <element name="getMessageResponse" type="xsd1:charType"/>
+            <element name="setMessage">
+                <simpleType>
+                    <restriction base="xsd:string">
+                        <maxLength value="1"/>
+                    </restriction>
+                </simpleType>
+            </element>
+            <element name="setMessageResponse">
+                <simpleType>
+                    <restriction base="xsd:string">
+                        <maxLength value="1"/>
+                    </restriction>
+                </simpleType>
+            </element>
+
+            <element name="charEl_x" type="xsd1:charType"/>
+            <element name="charEl_y" type="xsd1:charType"/>
+            <element name="charEl_z" type="xsd1:charType"/>
+            <element name="charEl_return">
+                <complexType>
+		    <sequence>
+			<element name="varChar" type="xsd1:charType"/>
+			<element name="varInt" type="xsd:int"/>
+			<element name="varString" type="xsd:string"/>
+		    </sequence>
+		</complexType>
+            </element>
+            
+        </schema>
+    </wsdl:types>
+    <wsdl:message name="getMessage">
+        <wsdl:part element="xsd1:getMessage" name="parameters"/>
+    </wsdl:message>
+    <wsdl:message name="getMessageResponse">
+        <wsdl:part element="xsd1:getMessageResponse" name="parameters"/>
+    </wsdl:message>
+    <wsdl:message name="setMessage">
+        <wsdl:part element="xsd1:setMessage" name="parameters"/>
+    </wsdl:message>
+    <wsdl:message name="setMessageResponse">
+        <wsdl:part element="xsd1:setMessageResponse" name="parameters"/>
+    </wsdl:message>
+    <wsdl:message name="echoChar">
+        <wsdl:part name="x" element="xsd1:charEl_x"/>
+        <wsdl:part name="y" element="xsd1:charEl_y"/>
+    </wsdl:message>
+    <wsdl:message name="echoCharResponse">
+        <wsdl:part name="return" element="xsd1:charEl_return"/>
+        <wsdl:part name="y" element="xsd1:charEl_y"/>
+        <wsdl:part name="z" element="xsd1:charEl_z"/>
+    </wsdl:message>
+    <wsdl:portType name="TestInterfacePort">
+        <wsdl:operation name="getMessage">
+            <wsdl:input message="ns1:getMessage" name="getMessage"/>
+            <wsdl:output message="ns1:getMessageResponse" name="getMessageResponse"/>
+        </wsdl:operation>
+        <wsdl:operation name="setMessage">
+            <wsdl:input message="ns1:setMessage" name="setMessage"/>
+            <wsdl:output message="ns1:setMessageResponse" name="setMessageResponse"/>
+        </wsdl:operation>
+        <wsdl:operation name="echoChar">
+            <wsdl:input message="ns1:echoChar"/>
+            <wsdl:output message="ns1:echoCharResponse"/>
+        </wsdl:operation>
+    </wsdl:portType>
+    <wsdl:binding name="TestInterfacePortSOAPBinding" type="ns1:TestInterfacePort">
+        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+        <wsdl:operation name="getMessage">
+            <soap:operation soapAction="" style="document"/>
+            <wsdl:input name="getMessage">
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output name="getMessageResponse">
+                <soap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="setMessage">
+            <soap:operation soapAction="" style="document"/>
+            <wsdl:input name="setMessage">
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output name="setMessageResponse">
+                <soap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="echoChar">
+            <soap:operation style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:service name="TestService">
+        <wsdl:port binding="ns1:TestInterfacePortSOAPBinding" name="newPort">
+            <http:address location="http://localhost:9000"/>
+        </wsdl:port>
+    </wsdl:service>
+</wsdl:definitions>

Propchange: incubator/cxf/trunk/testutils/src/main/resources/wsdl/test_chars.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/testutils/src/main/resources/wsdl/test_chars.wsdl
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/cxf/trunk/testutils/src/main/resources/wsdl/test_chars.wsdl
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityGenerator.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityGenerator.java?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityGenerator.java (original)
+++ incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityGenerator.java Fri May 18 09:39:38 2007
@@ -1,138 +1,138 @@
-/**
- * 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.
- */
-
-package org.apache.cxf.tools.common;
-
-import java.io.File;
-import java.io.IOException;
-import java.io.Writer;
-import java.util.Calendar;
-import java.util.HashMap;
-import java.util.Iterator;
-import java.util.Map;
-import java.util.Properties;
-import java.util.logging.Level;
-import java.util.logging.Logger;
-
-import org.apache.cxf.common.i18n.Message;
-import org.apache.cxf.common.logging.LogUtils;
-import org.apache.cxf.helpers.FileUtils;
-import org.apache.cxf.tools.util.FileWriterUtil;
-import org.apache.cxf.version.Version;
-import org.apache.velocity.Template;
-import org.apache.velocity.VelocityContext;
-import org.apache.velocity.app.Velocity;
-
-public final class VelocityGenerator {
-    private static final Logger LOG = LogUtils.getL7dLogger(VelocityGenerator.class);
-    private final Map<String, Object> attributes = new HashMap<String, Object>();
-    private String baseDir;
-    
-    public VelocityGenerator() {
-        init();
-    }
-
-    private void init() {
-        initVelocity();
-    }
-
-    private String getVelocityLogFile(String logfile) {
-        String logdir = System.getProperty("user.home");
-        if (logdir == null || logdir.length() == 0) {
-            logdir = System.getProperty("user.dir");
-        }
-        return logdir + File.separator + logfile;
-    }
-
-    private void initVelocity() throws ToolException {
-        try {
-            Properties props = new Properties();
-            String clzName = "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader";
-            props.put("resource.loader", "class");
-            props.put("class.resource.loader.class", clzName);
-            props.put("runtime.log", getVelocityLogFile("velocity.log"));
-
-            Velocity.init(props);
-        } catch (Exception e) {
-            org.apache.cxf.common.i18n.Message msg =
-                new org.apache.cxf.common.i18n.Message("FAIL_TO_INITIALIZE_VELOCITY_ENGINE",
-                                                             LOG);
-            LOG.log(Level.SEVERE, msg.toString());
-            throw new ToolException(msg, e);
-        }
-    }
-
-    public void doWrite(String templateName, Writer outputs) throws ToolException {
-        Template tmpl = null;
-        try {
-            tmpl = Velocity.getTemplate(templateName);
-        } catch (Exception e) {
-            Message msg = new Message("TEMPLATE_MISSING", LOG, templateName);
-            throw new ToolException(msg, e);
-        }
-
-        VelocityContext ctx = new VelocityContext();
-
-        for (Iterator iter = attributes.keySet().iterator(); iter.hasNext();) {
-            String key = (String)iter.next();
-            ctx.put(key, attributes.get(key));
-        }
-
-        VelocityWriter writer = new VelocityWriter(outputs);
-        try {
-            tmpl.merge(ctx, writer);
-            writer.close();
-        } catch (Exception e) {
-            Message msg = new Message("VELOCITY_ENGINE_WRITE_ERRORS", LOG);
-            throw new ToolException(msg, e);
-        }
-    }
-
-    public void setBaseDir(String dir) {
-        this.baseDir = dir;
-    }
-    
-    public File parseOutputName(String packageName, String filename) throws ToolException {
-        return parseOutputName(packageName, filename, ".java");
-    }
-
-    public File parseOutputName(String packageName, String filename, String ext) throws ToolException {
-        FileUtils.mkDir(new File(this.baseDir));
-        FileWriterUtil fw = new FileWriterUtil(this.baseDir);
-        try {
-            return fw.getFileToWrite(packageName, filename + ext);
-        } catch (IOException ioe) {
-            Message msg = new Message("FAIL_TO_WRITE_FILE", LOG, packageName + "." + filename + ext);
-            throw new ToolException(msg, ioe);
-        }
-    }
-    
-    public void setCommonAttributes() {
-        attributes.put("currentdate", Calendar.getInstance().getTime());
-        attributes.put("version", Version.getCurrentVersion());
-    }
-
-    public void clearAttributes() {
-        attributes.clear();
-    }
-
-    public void setAttributes(String n, Object value) {
-        attributes.put(n, value);
-    }
-}
+/**
+ * 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.
+ */
+
+package org.apache.cxf.tools.common;
+
+import java.io.File;
+import java.io.IOException;
+import java.io.Writer;
+import java.util.Calendar;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.Map;
+import java.util.Properties;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
+import org.apache.cxf.common.i18n.Message;
+import org.apache.cxf.common.logging.LogUtils;
+import org.apache.cxf.helpers.FileUtils;
+import org.apache.cxf.tools.util.FileWriterUtil;
+import org.apache.cxf.version.Version;
+import org.apache.velocity.Template;
+import org.apache.velocity.VelocityContext;
+import org.apache.velocity.app.Velocity;
+
+public final class VelocityGenerator {
+    private static final Logger LOG = LogUtils.getL7dLogger(VelocityGenerator.class);
+    private final Map<String, Object> attributes = new HashMap<String, Object>();
+    private String baseDir;
+    
+    public VelocityGenerator() {
+        init();
+    }
+
+    private void init() {
+        initVelocity();
+    }
+
+    private String getVelocityLogFile(String logfile) {
+        String logdir = System.getProperty("user.home");
+        if (logdir == null || logdir.length() == 0) {
+            logdir = System.getProperty("user.dir");
+        }
+        return logdir + File.separator + logfile;
+    }
+
+    private void initVelocity() throws ToolException {
+        try {
+            Properties props = new Properties();
+            String clzName = "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader";
+            props.put("resource.loader", "class");
+            props.put("class.resource.loader.class", clzName);
+            props.put("runtime.log", getVelocityLogFile("velocity.log"));
+
+            Velocity.init(props);
+        } catch (Exception e) {
+            org.apache.cxf.common.i18n.Message msg =
+                new org.apache.cxf.common.i18n.Message("FAIL_TO_INITIALIZE_VELOCITY_ENGINE",
+                                                             LOG);
+            LOG.log(Level.SEVERE, msg.toString());
+            throw new ToolException(msg, e);
+        }
+    }
+
+    public void doWrite(String templateName, Writer outputs) throws ToolException {
+        Template tmpl = null;
+        try {
+            tmpl = Velocity.getTemplate(templateName);
+        } catch (Exception e) {
+            Message msg = new Message("TEMPLATE_MISSING", LOG, templateName);
+            throw new ToolException(msg, e);
+        }
+
+        VelocityContext ctx = new VelocityContext();
+
+        for (Iterator iter = attributes.keySet().iterator(); iter.hasNext();) {
+            String key = (String)iter.next();
+            ctx.put(key, attributes.get(key));
+        }
+
+        VelocityWriter writer = new VelocityWriter(outputs);
+        try {
+            tmpl.merge(ctx, writer);
+            writer.close();
+        } catch (Exception e) {
+            Message msg = new Message("VELOCITY_ENGINE_WRITE_ERRORS", LOG);
+            throw new ToolException(msg, e);
+        }
+    }
+
+    public void setBaseDir(String dir) {
+        this.baseDir = dir;
+    }
+    
+    public File parseOutputName(String packageName, String filename) throws ToolException {
+        return parseOutputName(packageName, filename, ".java");
+    }
+
+    public File parseOutputName(String packageName, String filename, String ext) throws ToolException {
+        FileUtils.mkDir(new File(this.baseDir));
+        FileWriterUtil fw = new FileWriterUtil(this.baseDir);
+        try {
+            return fw.getFileToWrite(packageName, filename + ext);
+        } catch (IOException ioe) {
+            Message msg = new Message("FAIL_TO_WRITE_FILE", LOG, packageName + "." + filename + ext);
+            throw new ToolException(msg, ioe);
+        }
+    }
+    
+    public void setCommonAttributes() {
+        attributes.put("currentdate", Calendar.getInstance().getTime());
+        attributes.put("version", Version.getCurrentVersion());
+    }
+
+    public void clearAttributes() {
+        attributes.clear();
+    }
+
+    public void setAttributes(String n, Object value) {
+        attributes.put(n, value);
+    }
+}

Propchange: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityGenerator.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityGenerator.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityWriter.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityWriter.java?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityWriter.java (original)
+++ incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityWriter.java Fri May 18 09:39:38 2007
@@ -1,67 +1,67 @@
-/**
- * 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.
- */
-
-package org.apache.cxf.tools.common;
-
-import java.io.BufferedWriter;
-import java.io.IOException;
-import java.io.Writer;
-
-public class VelocityWriter extends BufferedWriter {
-    
-    private final String newLine = System.getProperty("line.separator");
-
-    public VelocityWriter(Writer out) {
-        super(out);
-    }
-
-    public VelocityWriter(Writer out, int size) {
-        super(out, size);
-    }
-
-    public void write(char[] chars) throws IOException {
-        String str = new String(chars);
-        if (str.indexOf("\r\n") >= 0 && newLine != null) {
-            super.write(str.replaceAll("\r\n", newLine));
-            return;
-        } else if (str.indexOf("\n") >= 0 && newLine != null) {
-            super.write(str.replaceAll("\n", newLine));
-            return;
-        } else {
-            super.write(str);
-        }
-       
-    }
-   
-    
-    
-    
-    public void write(String str) throws IOException {
-        if (str.indexOf("\r\n") >= 0  && newLine != null) {
-            super.write(str.replaceAll("\r\n", newLine));
-            return;
-        } else if (str.indexOf("\n") >= 0  && newLine != null) {
-            super.write(str.replaceAll("\n", newLine));
-            return;
-        } else {
-            super.write(str);
-        }
-    }
-
-}
+/**
+ * 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.
+ */
+
+package org.apache.cxf.tools.common;
+
+import java.io.BufferedWriter;
+import java.io.IOException;
+import java.io.Writer;
+
+public class VelocityWriter extends BufferedWriter {
+    
+    private final String newLine = System.getProperty("line.separator");
+
+    public VelocityWriter(Writer out) {
+        super(out);
+    }
+
+    public VelocityWriter(Writer out, int size) {
+        super(out, size);
+    }
+
+    public void write(char[] chars) throws IOException {
+        String str = new String(chars);
+        if (str.indexOf("\r\n") >= 0 && newLine != null) {
+            super.write(str.replaceAll("\r\n", newLine));
+            return;
+        } else if (str.indexOf("\n") >= 0 && newLine != null) {
+            super.write(str.replaceAll("\n", newLine));
+            return;
+        } else {
+            super.write(str);
+        }
+       
+    }
+   
+    
+    
+    
+    public void write(String str) throws IOException {
+        if (str.indexOf("\r\n") >= 0  && newLine != null) {
+            super.write(str.replaceAll("\r\n", newLine));
+            return;
+        } else if (str.indexOf("\n") >= 0  && newLine != null) {
+            super.write(str.replaceAll("\n", newLine));
+            return;
+        } else {
+            super.write(str);
+        }
+    }
+
+}

Propchange: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityWriter.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/VelocityWriter.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaCodeBlock.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaCodeBlock.java?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaCodeBlock.java (original)
+++ incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaCodeBlock.java Fri May 18 09:39:38 2007
@@ -1,40 +1,40 @@
-/**
- * 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.
- */
-
-package org.apache.cxf.tools.common.model;
-
-import java.util.ArrayList;
-import java.util.List;
-
-public class JavaCodeBlock {
-
-    /**
-     * Describe expressions here.
-     */
-    private List<JavaExpression> expressions = new ArrayList<JavaExpression>();
-
-    /**
-     * Get the <code>Expressions</code> value.
-     *
-     * @return a <code>List<JavaExpression></code> value
-     */
-    public final List<JavaExpression> getExpressions() {
-        return expressions;
-    }
-}
+/**
+ * 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.
+ */
+
+package org.apache.cxf.tools.common.model;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class JavaCodeBlock {
+
+    /**
+     * Describe expressions here.
+     */
+    private List<JavaExpression> expressions = new ArrayList<JavaExpression>();
+
+    /**
+     * Get the <code>Expressions</code> value.
+     *
+     * @return a <code>List<JavaExpression></code> value
+     */
+    public final List<JavaExpression> getExpressions() {
+        return expressions;
+    }
+}

Propchange: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaCodeBlock.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaCodeBlock.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaExpression.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaExpression.java?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaExpression.java (original)
+++ incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaExpression.java Fri May 18 09:39:38 2007
@@ -1,50 +1,50 @@
-/**
- * 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.
- */
-
-package org.apache.cxf.tools.common.model;
-
-public class JavaExpression {
-
-    /**
-     * Describe value here.
-     */
-    private String value;
-
-    /**
-     * Get the <code>Value</code> value.
-     *
-     * @return a <code>String</code> value
-     */
-    public final String getValue() {
-        return value;
-    }
-
-    /**
-     * Set the <code>Value</code> value.
-     *
-     * @param newValue The new Value value.
-     */
-    public final void setValue(final String newValue) {
-        this.value = newValue;
-    }
-
-    public final String toString() {
-        return getValue() + ";";
-    }
-}
+/**
+ * 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.
+ */
+
+package org.apache.cxf.tools.common.model;
+
+public class JavaExpression {
+
+    /**
+     * Describe value here.
+     */
+    private String value;
+
+    /**
+     * Get the <code>Value</code> value.
+     *
+     * @return a <code>String</code> value
+     */
+    public final String getValue() {
+        return value;
+    }
+
+    /**
+     * Set the <code>Value</code> value.
+     *
+     * @param newValue The new Value value.
+     */
+    public final void setValue(final String newValue) {
+        this.value = newValue;
+    }
+
+    public final String toString() {
+        return getValue() + ";";
+    }
+}

Propchange: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaExpression.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/tools/common/src/main/java/org/apache/cxf/tools/common/model/JavaExpression.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jbi.xjb
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jbi.xjb?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jbi.xjb (original)
+++ incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jbi.xjb Fri May 18 09:39:38 2007
@@ -1,34 +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="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema">
-        <jaxb:schemaBindings>
-            <jaxb:package name="org.apache.cxf.wsdl"/>
-        </jaxb:schemaBindings>
-        <jaxb:globalBindings generateIsSetMethod="true"/>
-    </jaxb:bindings>
-    <jaxb:bindings schemaLocation="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
-        <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
-    </jaxb:bindings>
-</jaxb:bindings>
+<?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="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema">
+        <jaxb:schemaBindings>
+            <jaxb:package name="org.apache.cxf.wsdl"/>
+        </jaxb:schemaBindings>
+        <jaxb:globalBindings generateIsSetMethod="true"/>
+    </jaxb:bindings>
+    <jaxb:bindings schemaLocation="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+        <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
+    </jaxb:bindings>
+</jaxb:bindings>

Propchange: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jbi.xjb
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jbi.xjb
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jbi.xjb
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jbi.xsd
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Fri May 18 09:39:38 2007
@@ -1 +1 @@
-Date Revision
+Rev Date

Modified: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jms.xjb
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jms.xjb?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jms.xjb (original)
+++ incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jms.xjb Fri May 18 09:39:38 2007
@@ -1,39 +1,39 @@
-<?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="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema">
-        <jaxb:schemaBindings>
-            <jaxb:package name="org.apache.cxf.wsdl"/>
-        </jaxb:schemaBindings>
-        <jaxb:globalBindings generateIsSetMethod="true"/>
-    </jaxb:bindings>
-    <jaxb:bindings schemaLocation="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
-        <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
-    </jaxb:bindings>
-    <jaxb:bindings schemaLocation="jms.xsd" node="/xs:schema">
-        <jaxb:schemaBindings>
-            <jaxb:package name="org.apache.cxf.transport.jms"/>
-        </jaxb:schemaBindings>
-    </jaxb:bindings>
-</jaxb:bindings>
+<?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="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema">
+        <jaxb:schemaBindings>
+            <jaxb:package name="org.apache.cxf.wsdl"/>
+        </jaxb:schemaBindings>
+        <jaxb:globalBindings generateIsSetMethod="true"/>
+    </jaxb:bindings>
+    <jaxb:bindings schemaLocation="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+        <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
+    </jaxb:bindings>
+    <jaxb:bindings schemaLocation="jms.xsd" node="/xs:schema">
+        <jaxb:schemaBindings>
+            <jaxb:package name="org.apache.cxf.transport.jms"/>
+        </jaxb:schemaBindings>
+    </jaxb:bindings>
+</jaxb:bindings>

Propchange: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jms.xjb
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jms.xjb
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/jms.xjb
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/xml-binding.xjb
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/xml-binding.xjb?view=diff&rev=539517&r1=539516&r2=539517
==============================================================================
--- incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/xml-binding.xjb (original)
+++ incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/xml-binding.xjb Fri May 18 09:39:38 2007
@@ -1,34 +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="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema">
-        <jaxb:schemaBindings>
-            <jaxb:package name="org.apache.cxf.wsdl"/>
-        </jaxb:schemaBindings>
-        <jaxb:globalBindings generateIsSetMethod="true"/>
-    </jaxb:bindings>
-    <jaxb:bindings schemaLocation="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
-        <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
-    </jaxb:bindings>
-</jaxb:bindings>
+<?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="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema">
+        <jaxb:schemaBindings>
+            <jaxb:package name="org.apache.cxf.wsdl"/>
+        </jaxb:schemaBindings>
+        <jaxb:globalBindings generateIsSetMethod="true"/>
+    </jaxb:bindings>
+    <jaxb:bindings schemaLocation="../../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+        <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
+    </jaxb:bindings>
+</jaxb:bindings>

Propchange: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/xml-binding.xjb
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/xml-binding.xjb
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/cxf/trunk/tools/common/src/main/resources/schemas/wsdl/xml-binding.xjb
------------------------------------------------------------------------------
    svn:mime-type = text/xml