You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2009/10/27 06:52:53 UTC

svn commit: r830065 - in /tuscany/branches/sca-java-1.5.2/itest/wsdlgen: ./ src/main/java/anotherpackage/ src/main/java/yetanotherpackage/ src/main/resources/ src/main/resources/wsdl/ src/test/resources/ src/test/resources/wsdl/

Author: rfeng
Date: Tue Oct 27 05:52:51 2009
New Revision: 830065

URL: http://svn.apache.org/viewvc?rev=830065&view=rev
Log:
Add missing files and fix host names

Added:
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/BBean.java   (with props)
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/CBean.java   (with props)
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/yetanotherpackage/
      - copied from r820686, tuscany/branches/sca-java-1.x/itest/wsdlgen/src/main/java/yetanotherpackage/
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/yetanotherpackage/DBean.java
      - copied unchanged from r820686, tuscany/branches/sca-java-1.x/itest/wsdlgen/src/main/java/yetanotherpackage/DBean.java
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/
      - copied from r820686, tuscany/branches/sca-java-1.x/itest/wsdlgen/src/test/resources/
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/wsdl/
      - copied from r820686, tuscany/branches/sca-java-1.x/itest/wsdlgen/src/test/resources/wsdl/
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/wsdl/HelloWorldImplService_schema2.xsd
      - copied unchanged from r820686, tuscany/branches/sca-java-1.x/itest/wsdlgen/src/test/resources/wsdl/HelloWorldImplService_schema2.xsd
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/wsdl/README
      - copied unchanged from r820686, tuscany/branches/sca-java-1.x/itest/wsdlgen/src/test/resources/wsdl/README
Modified:
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/   (props changed)
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/helloworld1.composite
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/wsdl/HelloWorldService_TuscanyGen.wsdl
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/wsdl/HelloWorldImplService.wsdl   (contents, props changed)
    tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/wsdl/HelloWorldImplService_schema1.xsd   (contents, props changed)

Propchange: tuscany/branches/sca-java-1.5.2/itest/wsdlgen/
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Tue Oct 27 05:52:51 2009
@@ -0,0 +1,2 @@
+/tuscany/branches/sca-java-1.3/itest/wsdlgen:671193
+/tuscany/branches/sca-java-1.x/itest/wsdlgen:820686

Added: tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/BBean.java
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/BBean.java?rev=830065&view=auto
==============================================================================
--- tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/BBean.java (added)
+++ tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/BBean.java Tue Oct 27 05:52:51 2009
@@ -0,0 +1,42 @@
+/*
+ * 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 anotherpackage;
+
+public class BBean {
+    
+    protected String field1;
+    protected String field2;
+
+    public String getField1() {
+        return field1;
+    }
+    
+    public void setField1(String field1) {
+        this.field1 = field1;
+    }
+    
+    public String getField2() {
+        return field2;
+    }
+    
+    public void setField2(String field2) {
+        this.field2 = field2;
+    }
+}
+

Propchange: tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/BBean.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/BBean.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/CBean.java
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/CBean.java?rev=830065&view=auto
==============================================================================
--- tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/CBean.java (added)
+++ tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/CBean.java Tue Oct 27 05:52:51 2009
@@ -0,0 +1,45 @@
+/*
+ * 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 anotherpackage;
+
+import javax.xml.bind.annotation.XmlType;
+
+@XmlType(name="")
+public class CBean {
+    
+    protected String field1;
+    protected String field2;
+
+    public String getField1() {
+        return field1;
+    }
+    
+    public void setField1(String field1) {
+        this.field1 = field1;
+    }
+    
+    public String getField2() {
+        return field2;
+    }
+    
+    public void setField2(String field2) {
+        this.field2 = field2;
+    }
+}
+

Propchange: tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/CBean.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/CBean.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/helloworld1.composite
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/helloworld1.composite?rev=830065&r1=830064&r2=830065&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/helloworld1.composite (original)
+++ tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/helloworld1.composite Tue Oct 27 05:52:51 2009
@@ -29,14 +29,14 @@
             <binding.sca/>
         </service>
         <reference name="hwService">
-            <binding.ws uri="http://L3AW203:8085/HelloWorldServiceComponent1"/>
+            <binding.ws uri="http://localhost:8085/HelloWorldServiceComponent1"/>
         </reference>
     </component>    
 
     <component name="HelloWorldServiceComponent1">
         <implementation.java class="helloworld.HelloWorldImpl" />
 	    <service name="HelloWorldService">
-            <binding.ws uri="http://L3AW203:8085/HelloWorldServiceComponent1"/>
+            <binding.ws uri="http://localhost:8085/HelloWorldServiceComponent1"/>
         </service>
     </component>
     

Modified: tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/wsdl/HelloWorldService_TuscanyGen.wsdl
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/wsdl/HelloWorldService_TuscanyGen.wsdl?rev=830065&r1=830064&r2=830065&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/wsdl/HelloWorldService_TuscanyGen.wsdl (original)
+++ tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/wsdl/HelloWorldService_TuscanyGen.wsdl Tue Oct 27 05:52:51 2009
@@ -337,7 +337,7 @@
 				location="jms:/queue.sample?transport.jms.ConnectionFactoryJNDIName=QueueConnectionFactory&amp;java.naming.factory.initial=org.apache.activemq.jndi.ActiveMQInitialContextFactory&amp;java.naming.provider.url=tcp://localhost:51293" />
 		</wsdl:port>
 		<wsdl:port name="HelloWorldServicePort" binding="HelloWorldServiceBinding">
-			<SOAP:address location="http://l3aw203:8085/HelloWorldServiceComponent1" />
+			<SOAP:address location="http://localhost:8085/HelloWorldServiceComponent1" />
 		</wsdl:port>
 	</wsdl:service>
 </wsdl:definitions>    

Modified: tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/wsdl/HelloWorldImplService.wsdl
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/wsdl/HelloWorldImplService.wsdl?rev=830065&r1=820686&r2=830065&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/wsdl/HelloWorldImplService.wsdl (original)
+++ tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/wsdl/HelloWorldImplService.wsdl Tue Oct 27 05:52:51 2009
@@ -130,7 +130,7 @@
   </binding>
   <service name="HelloWorldImplService">
     <port name="HelloWorldImplPort" binding="tns:HelloWorldImplPortBinding">
-      <soap:address location="http://L3AW203:8085/HelloWorldServiceComponent1"/>
+      <soap:address location="http://localhost:8085/HelloWorldServiceComponent1"/>
     </port>
   </service>
 </definitions>

Modified: tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/wsdl/HelloWorldImplService_schema1.xsd
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.5.2/itest/wsdlgen/src/test/resources/wsdl/HelloWorldImplService_schema1.xsd?rev=830065&r1=820686&r2=830065&view=diff
==============================================================================
    (empty)