summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.5.2/itest/wsdlgen/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-1.5.2/itest/wsdlgen/src/main')
-rw-r--r--branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/BBean.java42
-rw-r--r--branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/CBean.java45
-rw-r--r--branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/yetanotherpackage/DBean.java53
-rw-r--r--branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/helloworld1.composite4
-rw-r--r--branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/wsdl/HelloWorldService_TuscanyGen.wsdl2
5 files changed, 143 insertions, 3 deletions
diff --git a/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/BBean.java b/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/BBean.java
new file mode 100644
index 0000000000..f9578a5f92
--- /dev/null
+++ b/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/BBean.java
@@ -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;
+ }
+}
+
diff --git a/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/CBean.java b/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/CBean.java
new file mode 100644
index 0000000000..b1b3801210
--- /dev/null
+++ b/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/anotherpackage/CBean.java
@@ -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;
+ }
+}
+
diff --git a/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/yetanotherpackage/DBean.java b/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/yetanotherpackage/DBean.java
new file mode 100644
index 0000000000..cee893d678
--- /dev/null
+++ b/branches/sca-java-1.5.2/itest/wsdlgen/src/main/java/yetanotherpackage/DBean.java
@@ -0,0 +1,53 @@
+/*
+ * 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 yetanotherpackage;
+
+import anotherpackage.BBean;
+
+public class DBean {
+
+ protected String field1;
+ protected String field2;
+ protected BBean field3;
+
+ 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;
+ }
+
+ public BBean getField3() {
+ return field3;
+ }
+
+ public void setField3(BBean field3) {
+ this.field3 = field3;
+ }
+}
+
diff --git a/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/helloworld1.composite b/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/helloworld1.composite
index 12d98d3453..3bd84f34d9 100644
--- a/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/helloworld1.composite
+++ b/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/helloworld1.composite
@@ -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>
diff --git a/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/wsdl/HelloWorldService_TuscanyGen.wsdl b/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/wsdl/HelloWorldService_TuscanyGen.wsdl
index 6c6d8c6637..185aa2c649 100644
--- a/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/wsdl/HelloWorldService_TuscanyGen.wsdl
+++ b/branches/sca-java-1.5.2/itest/wsdlgen/src/main/resources/wsdl/HelloWorldService_TuscanyGen.wsdl
@@ -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>