From 8147a9a796ff3530d407c8ed4421efae5515fa71 Mon Sep 17 00:00:00 2001 From: lresende Date: Sat, 31 Jan 2009 05:27:28 +0000 Subject: Moving samples that are not part of the main build to contrib folder git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@739507 13f79535-47bb-0310-9956-ffa450edef68 --- java/sca/samples/helloworld-ws-service/README | 140 ------------------- java/sca/samples/helloworld-ws-service/build.xml | 72 ---------- .../helloworld-ws-service.png | Bin 6531 -> 0 bytes .../helloworld-ws-service.svg | 150 --------------------- java/sca/samples/helloworld-ws-service/pom.xml | 79 ----------- .../src/main/java/helloworld/HelloWorldImpl.java | 33 ----- .../src/main/java/helloworld/HelloWorldServer.java | 46 ------- .../main/java/helloworld/HelloWorldService.java | 31 ----- .../org/example/orderservice/ObjectFactory.java | 56 -------- .../main/java/org/example/orderservice/Order.java | 129 ------------------ .../org/example/orderservice/OrderService.java | 37 ----- .../org/example/orderservice/OrderServiceImpl.java | 65 --------- .../example/orderservice/OrderService_Service.java | 66 --------- .../java/org/example/orderservice/ReviewOrder.java | 64 --------- .../example/orderservice/ReviewOrderResponse.java | 64 --------- .../main/java/org/example/orderservice/Status.java | 57 -------- .../org/example/orderservice/package-info.java | 2 - .../sca-deployables/helloworldws.composite | 33 ----- .../META-INF/sca-deployables/orderws.composite | 33 ----- .../src/main/resources/wsdl/helloworld.wsdl | 79 ----------- .../src/main/resources/wsdl/orderservice.wsdl | 71 ---------- .../java/helloworld/HelloWorldServerTestCase.java | 62 --------- 22 files changed, 1369 deletions(-) delete mode 100644 java/sca/samples/helloworld-ws-service/README delete mode 100644 java/sca/samples/helloworld-ws-service/build.xml delete mode 100644 java/sca/samples/helloworld-ws-service/helloworld-ws-service.png delete mode 100644 java/sca/samples/helloworld-ws-service/helloworld-ws-service.svg delete mode 100644 java/sca/samples/helloworld-ws-service/pom.xml delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldImpl.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldServer.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldService.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ObjectFactory.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/Order.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderService.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderServiceImpl.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderService_Service.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ReviewOrder.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ReviewOrderResponse.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/Status.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/package-info.java delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/resources/META-INF/sca-deployables/helloworldws.composite delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/resources/META-INF/sca-deployables/orderws.composite delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/resources/wsdl/helloworld.wsdl delete mode 100644 java/sca/samples/helloworld-ws-service/src/main/resources/wsdl/orderservice.wsdl delete mode 100644 java/sca/samples/helloworld-ws-service/src/test/java/helloworld/HelloWorldServerTestCase.java (limited to 'java/sca/samples/helloworld-ws-service') diff --git a/java/sca/samples/helloworld-ws-service/README b/java/sca/samples/helloworld-ws-service/README deleted file mode 100644 index 72417d3160..0000000000 --- a/java/sca/samples/helloworld-ws-service/README +++ /dev/null @@ -1,140 +0,0 @@ -Holder Pattern Service Sample -====================================== -This sample demonstrates an SCA service that uses a web service binding. The -web service binding has been generated from a given WSDL file: - src/main/resources/wsdl/orderservice.wsdl -The generated binding has been placed in src/main/java/org/examle/orderservice -and was generated via the JDK tool wsimport and the command: - wsimport -d orderservice -keep orderservice.wsdl - -The interesting feature of this sample is that the generated service interface, -OrderService, contains a method with the signature: - public void reviewOrder( - @WebParam(name = "myData", targetNamespace = "", mode = WebParam.Mode.INOUT) - javax.xml.ws.Holder orderData); -The orderData parameter is an input/output parameter that is provided by the caller, -updated by the service, and returned to the caller. The business object is updated -in place, a common pattern in web services, and not returned as a response. Tuscany -can handle limited instances of this pattern. - -The README in the samples directory (the directory above this) provides -general instructions about building and running samples. Take a look there -first. - -If you just want to run it to see what happens open a command prompt, navigate -to this sample directory and do: - -ant run - -OR if you don't have ant, on Windows do - -java -cp ..\..\lib\tuscany-sca-manifest.jar;target\sample-holder-ws-service.jar org.example.orderservice.OrderServiceTestCase - -and on *nix do - -java -cp ../../lib/tuscany-sca-manifest.jar:target/sample-holder-ws-service.jar org.example.orderservice.OrderServiceTestCase - -Sample Overview ---------------- -The sample provides a single component that is wired to a service with a -web service binding. - -holder-ws-service/ - src/ - main/ - java/ - org/ - example/ - orderservice - *.java - Web service binding generated from - HelloWorldServiceComponent - resources/ - wsdl/ - orderservice.wsdl - the service description that describes - the exposed service - orderws.composite - the SCA assembly that uses this service - test/ - java/ - helloworld/ - org/ - example/ - orderservice/ - OrderServiceTestCase.java - JUnit test case - build.xml - the Ant build file - pom.xml - the Maven build file - -Building And Running The Sample Using Ant ------------------------------------------ -With the binary distribution the sample can be built and run using Ant using the -following commands - -cd holder-ws-service -ant compile -ant run - -You should see the following output from the run target. - -run: - [java] 14-Jan-2008 14:18:47 org.apache.tuscany.sca.http.jetty.JettyServer a -ddServletMapping - [java] INFO: Added Servlet mapping: http://L3AW203:8085/HelloWorldService - [java] HelloWorld server started (press enter to shutdown) - -As this point the SCA service is exposed as a web service by a web server -started automatically by the SCA runtime. To stop the server just press -enter. - -To exercise the service run up the helloworld-ws-reference sample. Take a look at -the README in that sample and you will see you need the following commands - -cd holder-ws-reference -ant run - -Building And Running The Sample Using Maven -------------------------------------------- -With either the binary or source distributions the sample can be built and run -using Maven as follows. When using Maven you don't need to run the helloworld- -ws-reference sample as Maven includes a simple ping test to make sure that the -service is available - -cd holder-ws-service -mvn - -You should see the following output from the test phase. -------------------------------------------------------- - T E S T S -------------------------------------------------------- -Running org.example.orderservice.OrderServiceTestCase -Jan 21, 2009 9:31:11 AM org.apache.tuscany.sca.node.impl.NodeImpl -INFO: Creating node: META-INF/sca-deployables/orderws.composite -Jan 21, 2009 9:31:13 AM org.apache.tuscany.sca.node.impl.NodeImpl configureNode -INFO: Loading contribution: file:/E:/t/branches/sca-java-1.x/samples/holder-ws-webservice/target/classes/ -Jan 21, 2009 9:31:14 AM org.apache.tuscany.sca.node.impl.NodeImpl configureNode -INFO: Loading composite: file:/E:/t/branches/sca-java-1.x/samples/holder-ws-webservice/target/classes/META-INF/sca-deployables/orderws.composite -Jan 21, 2009 9:31:14 AM org.apache.tuscany.sca.node.impl.NodeImpl start -INFO: Starting node: META-INF/sca-deployables/orderws.composite -- No JMS connection factories are defined.Will not listen for any JMS messages -Jan 21, 2009 9:31:15 AM org.apache.catalina.core.StandardEngine start -INFO: Starting Servlet Engine: Apache Tomcat/6.0.14 -Jan 21, 2009 9:31:15 AM org.apache.catalina.startup.ContextConfig defaultWebConfig -INFO: No default web.xml -Jan 21, 2009 9:31:15 AM org.apache.coyote.http11.Http11Protocol init -INFO: Initializing Coyote HTTP/1.1 on http-8085 -Jan 21, 2009 9:31:15 AM org.apache.coyote.http11.Http11Protocol start -INFO: Starting Coyote HTTP/1.1 on http-8085 -- No JMS connection factories are defined.Will not listen for any JMS messages -Jan 21, 2009 9:31:15 AM org.apache.tuscany.sca.http.tomcat.TomcatServer addServletMapping -INFO: Added Servlet mapping: http://T602010:8085/OrderService ->>> Order submitted=Order[customerId=cust1234,orderId=0,total=50.0,status=Created] ->>> OrderService.reviewOrder return=Order[customerId=cust1234,orderId=0,total=50.0,status=Approved] ->>> Order returned=Order[customerId=cust1234,orderId=0,total=50.0,status=Approved] -Jan 21, 2009 9:31:16 AM org.apache.tuscany.sca.node.impl.NodeImpl stop -INFO: Stopping node: META-INF/sca-deployables/orderws.composite -Jan 21, 2009 9:31:17 AM org.apache.tuscany.sca.http.tomcat.TomcatServer removeServletMapping -INFO: Removed Servlet mapping: http://T602010:8085/OrderService -Jan 21, 2009 9:31:17 AM org.apache.coyote.http11.Http11Protocol destroy -INFO: Stopping Coyote HTTP/1.1 on http-8085 - -Note the console output with ">>>" prefix. This shows that an order was submitted in -the "Created" state, handled by the OrderService reviewOrder method, and returned in -the "Approved" state. This shows that the Junit test cases have run successfully. diff --git a/java/sca/samples/helloworld-ws-service/build.xml b/java/sca/samples/helloworld-ws-service/build.xml deleted file mode 100644 index 7a59628c7b..0000000000 --- a/java/sca/samples/helloworld-ws-service/build.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/java/sca/samples/helloworld-ws-service/helloworld-ws-service.png b/java/sca/samples/helloworld-ws-service/helloworld-ws-service.png deleted file mode 100644 index eab29d0bcd..0000000000 Binary files a/java/sca/samples/helloworld-ws-service/helloworld-ws-service.png and /dev/null differ diff --git a/java/sca/samples/helloworld-ws-service/helloworld-ws-service.svg b/java/sca/samples/helloworld-ws-service/helloworld-ws-service.svg deleted file mode 100644 index 61cd93ead9..0000000000 --- a/java/sca/samples/helloworld-ws-service/helloworld-ws-service.svg +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - helloworldws - - HelloWorldServiceComponent - - HelloWorldWebService - - diff --git a/java/sca/samples/helloworld-ws-service/pom.xml b/java/sca/samples/helloworld-ws-service/pom.xml deleted file mode 100644 index a895191917..0000000000 --- a/java/sca/samples/helloworld-ws-service/pom.xml +++ /dev/null @@ -1,79 +0,0 @@ - - - - 4.0.0 - - org.apache.tuscany.sca - tuscany-sca - 1.5-SNAPSHOT - ../../pom.xml - - sample-holder-ws-service - Apache Tuscany SCA Holder Input/Output Web Service Sample - - - - apache.incubator - http://people.apache.org/repo/m2-incubating-repository - - - - - - org.apache.tuscany.sca - tuscany-host-embedded - 1.5-SNAPSHOT - compile - - - - org.apache.tuscany.sca - tuscany-implementation-java-runtime - 1.5-SNAPSHOT - runtime - - - - org.apache.tuscany.sca - tuscany-binding-ws-axis2 - 1.5-SNAPSHOT - runtime - - - - org.apache.tuscany.sca - tuscany-host-tomcat - 1.5-SNAPSHOT - runtime - - - - junit - junit - 4.5 - test - - - - - ${artifactId} - - - diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldImpl.java b/java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldImpl.java deleted file mode 100644 index a75187f0d7..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldImpl.java +++ /dev/null @@ -1,33 +0,0 @@ -/* - * 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 helloworld; - -import org.oasisopen.sca.annotation.Service; - -/** - * This class implements the HelloWorld service. - */ -@Service(HelloWorldService.class) -public class HelloWorldImpl implements HelloWorldService { - - public String getGreetings(String name) { - return "Hello " + name; - } - -} diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldServer.java b/java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldServer.java deleted file mode 100644 index c37bfcda65..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldServer.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * 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 helloworld; - -import java.io.IOException; - -import org.apache.tuscany.sca.host.embedded.SCADomain; - -/** - * This server program shows how to create an SCA runtime, and start it which - * activates the helloworld Web service endpoint. - */ -public class HelloWorldServer { - - public static void main(String[] args) { - - SCADomain scaDomain = SCADomain.newInstance("META-INF/sca-deployables/helloworldws.composite"); - - try { - System.out.println("HelloWorld server started (press enter to shutdown)"); - System.in.read(); - } catch (IOException e) { - e.printStackTrace(); - } - - scaDomain.close(); - System.out.println("HelloWorld server stopped"); - } - -} diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldService.java b/java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldService.java deleted file mode 100644 index 513c2e3129..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/helloworld/HelloWorldService.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * 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 helloworld; - -import org.oasisopen.sca.annotation.Remotable; - -/** - * This is the business interface of the HelloWorld greetings service. - */ -@Remotable -public interface HelloWorldService { - - public String getGreetings(String name); -} - diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ObjectFactory.java b/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ObjectFactory.java deleted file mode 100644 index e472b2bada..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ObjectFactory.java +++ /dev/null @@ -1,56 +0,0 @@ - -package org.example.orderservice; - -import javax.xml.bind.annotation.XmlRegistry; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the org.example.orderservice package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.example.orderservice - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ReviewOrderResponse } - * - */ - public ReviewOrderResponse createReviewOrderResponse() { - return new ReviewOrderResponse(); - } - - /** - * Create an instance of {@link Order } - * - */ - public Order createOrder() { - return new Order(); - } - - /** - * Create an instance of {@link ReviewOrder } - * - */ - public ReviewOrder createReviewOrder() { - return new ReviewOrder(); - } - -} diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/Order.java b/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/Order.java deleted file mode 100644 index 7508887a7d..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/Order.java +++ /dev/null @@ -1,129 +0,0 @@ - -package org.example.orderservice; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for order complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="order">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="customerId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://www.example.org/OrderService/}status" minOccurs="0"/>
- *         <element name="total" type="{http://www.w3.org/2001/XMLSchema}double"/>
- *         <element name="orderId" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "order", propOrder = { - "customerId", - "status", - "total", - "orderId" -}) -public class Order { - - protected String customerId; - protected Status status; - protected double total; - protected int orderId; - - /** - * Gets the value of the customerId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCustomerId() { - return customerId; - } - - /** - * Sets the value of the customerId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCustomerId(String value) { - this.customerId = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link Status } - * - */ - public Status getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link Status } - * - */ - public void setStatus(Status value) { - this.status = value; - } - - /** - * Gets the value of the total property. - * - */ - public double getTotal() { - return total; - } - - /** - * Sets the value of the total property. - * - */ - public void setTotal(double value) { - this.total = value; - } - - /** - * Gets the value of the orderId property. - * - */ - public int getOrderId() { - return orderId; - } - - /** - * Sets the value of the orderId property. - * - */ - public void setOrderId(int value) { - this.orderId = value; - } - - // Added manually from wsimport generated class to improve debugging. - public String toString() { - return "Order[customerId=" + customerId + ",orderId=" + orderId + ",total=" + total + ",status=" + status.value() + "]"; - } -} diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderService.java b/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderService.java deleted file mode 100644 index a11d733cc9..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderService.java +++ /dev/null @@ -1,37 +0,0 @@ - -package org.example.orderservice; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebService; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.ws.Holder; -import javax.xml.ws.RequestWrapper; -import javax.xml.ws.ResponseWrapper; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.1.1 in JDK 6 - * Generated source version: 2.1 - * - */ -@WebService(name = "OrderService", targetNamespace = "http://www.example.org/OrderService/") -@XmlSeeAlso({ - ObjectFactory.class -}) -public interface OrderService { - - - /** - * - * @param myData - */ - @WebMethod(action = "http://www.example.org/OrderService/reviewOrder") - @RequestWrapper(localName = "reviewOrder", targetNamespace = "http://www.example.org/OrderService/", className = "org.example.orderservice.ReviewOrder") - @ResponseWrapper(localName = "reviewOrderResponse", targetNamespace = "http://www.example.org/OrderService/", className = "org.example.orderservice.ReviewOrderResponse") - public void reviewOrder( - @WebParam(name = "myData", targetNamespace = "", mode = WebParam.Mode.INOUT) - Holder myData); - -} diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderServiceImpl.java b/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderServiceImpl.java deleted file mode 100644 index 0e084bf459..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderServiceImpl.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * 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.example.orderservice; - -// import org.oasisopen.sca.annotation.Service; -import java.util.Random; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.xml.ws.Holder; -import javax.xml.ws.RequestWrapper; -import javax.xml.ws.ResponseWrapper; - -/** - * This class implements the OrderService service. - */ -// @Service(OrderService.class) -public class OrderServiceImpl implements OrderService { - - /** This dummy implementation approves or rejects orders: - * < 100 - always approved. - * 100-1100 - randomly approved. Probability = (1100 - amount)/10 - * >1100 - always rejected. - */ - // public Order reviewOrder(Order order) { - @WebMethod(action = "http://www.example.org/OrderService/reviewOrder") - @RequestWrapper(localName = "reviewOrder", targetNamespace = "http://www.example.org/OrderService/", className = "org.example.orderservice.ReviewOrder") - @ResponseWrapper(localName = "reviewOrderResponse", targetNamespace = "http://www.example.org/OrderService/", className = "org.example.orderservice.ReviewOrderResponse") - public void reviewOrder( - @WebParam(name = "myData", targetNamespace = "", mode = WebParam.Mode.INOUT) - Holder myData) { - Order order = myData.value; - double total = order.getTotal(); - if ( total < 100.0 ) { - order.setStatus( Status.APPROVED ); - } else if ( total > 1100.0 ) { - order.setStatus( Status.REJECTED ); - } else { - int probability = (int) ((-100.0 + total) / 10.0); - Random approver = new Random(); - if ( approver.nextInt( 100 ) < probability ) - order.setStatus( Status.APPROVED ); - else - order.setStatus( Status.REJECTED ); - } - System.out.println( ">>> OrderService.reviewOrder return=" + order ); - // return order; - } -} diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderService_Service.java b/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderService_Service.java deleted file mode 100644 index 9c8ff711ea..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/OrderService_Service.java +++ /dev/null @@ -1,66 +0,0 @@ - -package org.example.orderservice; - -import java.net.MalformedURLException; -import java.net.URL; -import javax.xml.namespace.QName; -import javax.xml.ws.Service; -import javax.xml.ws.WebEndpoint; -import javax.xml.ws.WebServiceClient; -import javax.xml.ws.WebServiceFeature; - - -/** - * This class was generated by the JAX-WS RI. - * JAX-WS RI 2.1.1 in JDK 6 - * Generated source version: 2.1 - * - */ -@WebServiceClient(name = "OrderService", targetNamespace = "http://www.example.org/OrderService/", wsdlLocation = "META-INF/sca-deployables/orderservice.wsdl") -public class OrderService_Service - extends Service -{ - - private final static URL ORDERSERVICE_WSDL_LOCATION; - - static { - URL url = null; - try { - url = new URL("META-INF/sca-deployables/orderservice.wsdl"); - } catch (MalformedURLException e) { - e.printStackTrace(); - } - ORDERSERVICE_WSDL_LOCATION = url; - } - - public OrderService_Service(URL wsdlLocation, QName serviceName) { - super(wsdlLocation, serviceName); - } - - public OrderService_Service() { - super(ORDERSERVICE_WSDL_LOCATION, new QName("http://www.example.org/OrderService/", "OrderService")); - } - - /** - * - * @return - * returns OrderService - */ - @WebEndpoint(name = "OrderServiceSOAP") - public OrderService getOrderServiceSOAP() { - return (OrderService)super.getPort(new QName("http://www.example.org/OrderService/", "OrderServiceSOAP"), OrderService.class); - } - - /** - * - * @param features - * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. - * @return - * returns OrderService - */ - @WebEndpoint(name = "OrderServiceSOAP") - public OrderService getOrderServiceSOAP(WebServiceFeature... features) { - return (OrderService)super.getPort(new QName("http://www.example.org/OrderService/", "OrderServiceSOAP"), OrderService.class, features); - } - -} diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ReviewOrder.java b/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ReviewOrder.java deleted file mode 100644 index 9e7192a0d0..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ReviewOrder.java +++ /dev/null @@ -1,64 +0,0 @@ - -package org.example.orderservice; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="myData" type="{http://www.example.org/OrderService/}order"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "myData" -}) -@XmlRootElement(name = "reviewOrder") -public class ReviewOrder { - - @XmlElement(required = true) - protected Order myData; - - /** - * Gets the value of the myData property. - * - * @return - * possible object is - * {@link Order } - * - */ - public Order getMyData() { - return myData; - } - - /** - * Sets the value of the myData property. - * - * @param value - * allowed object is - * {@link Order } - * - */ - public void setMyData(Order value) { - this.myData = value; - } - -} diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ReviewOrderResponse.java b/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ReviewOrderResponse.java deleted file mode 100644 index 90dbc3f25e..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/ReviewOrderResponse.java +++ /dev/null @@ -1,64 +0,0 @@ - -package org.example.orderservice; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for anonymous complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType>
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="myData" type="{http://www.example.org/OrderService/}order"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "myData" -}) -@XmlRootElement(name = "reviewOrderResponse") -public class ReviewOrderResponse { - - @XmlElement(required = true) - protected Order myData; - - /** - * Gets the value of the myData property. - * - * @return - * possible object is - * {@link Order } - * - */ - public Order getMyData() { - return myData; - } - - /** - * Sets the value of the myData property. - * - * @param value - * allowed object is - * {@link Order } - * - */ - public void setMyData(Order value) { - this.myData = value; - } - -} diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/Status.java b/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/Status.java deleted file mode 100644 index 73a1b5c45e..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/Status.java +++ /dev/null @@ -1,57 +0,0 @@ - -package org.example.orderservice; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlEnumValue; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for status. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="status">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Created"/>
- *     <enumeration value="Submitted"/>
- *     <enumeration value="Approved"/>
- *     <enumeration value="Rejected"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "status") -@XmlEnum -public enum Status { - - @XmlEnumValue("Created") - CREATED("Created"), - @XmlEnumValue("Submitted") - SUBMITTED("Submitted"), - @XmlEnumValue("Approved") - APPROVED("Approved"), - @XmlEnumValue("Rejected") - REJECTED("Rejected"); - private final String value; - - Status(String v) { - value = v; - } - - public String value() { - return value; - } - - public static Status fromValue(String v) { - for (Status c: Status.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/package-info.java b/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/package-info.java deleted file mode 100644 index 64c056b7fb..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/java/org/example/orderservice/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.example.org/OrderService/") -package org.example.orderservice; diff --git a/java/sca/samples/helloworld-ws-service/src/main/resources/META-INF/sca-deployables/helloworldws.composite b/java/sca/samples/helloworld-ws-service/src/main/resources/META-INF/sca-deployables/helloworldws.composite deleted file mode 100644 index d767625ae7..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/resources/META-INF/sca-deployables/helloworldws.composite +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - diff --git a/java/sca/samples/helloworld-ws-service/src/main/resources/META-INF/sca-deployables/orderws.composite b/java/sca/samples/helloworld-ws-service/src/main/resources/META-INF/sca-deployables/orderws.composite deleted file mode 100644 index d34891d1af..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/resources/META-INF/sca-deployables/orderws.composite +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - diff --git a/java/sca/samples/helloworld-ws-service/src/main/resources/wsdl/helloworld.wsdl b/java/sca/samples/helloworld-ws-service/src/main/resources/wsdl/helloworld.wsdl deleted file mode 100644 index 454763410c..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/resources/wsdl/helloworld.wsdl +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/java/sca/samples/helloworld-ws-service/src/main/resources/wsdl/orderservice.wsdl b/java/sca/samples/helloworld-ws-service/src/main/resources/wsdl/orderservice.wsdl deleted file mode 100644 index fd8ef74403..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/main/resources/wsdl/orderservice.wsdl +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/java/sca/samples/helloworld-ws-service/src/test/java/helloworld/HelloWorldServerTestCase.java b/java/sca/samples/helloworld-ws-service/src/test/java/helloworld/HelloWorldServerTestCase.java deleted file mode 100644 index 189332be91..0000000000 --- a/java/sca/samples/helloworld-ws-service/src/test/java/helloworld/HelloWorldServerTestCase.java +++ /dev/null @@ -1,62 +0,0 @@ -/* - * 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 helloworld; - -import static junit.framework.Assert.assertEquals; -import static junit.framework.Assert.assertNotNull; - -import java.io.IOException; -import java.net.Socket; - -import org.apache.tuscany.sca.host.embedded.SCADomain; -import org.junit.After; -import org.junit.Before; -import org.junit.Test; - -/** - * Tests that the helloworld server is available - */ -public class HelloWorldServerTestCase{ - - private SCADomain scaDomain; - - @Before - public void startServer() throws Exception { - scaDomain = SCADomain.newInstance("META-INF/sca-deployables/helloworldws.composite"); - } - - @Test - public void testPing() throws IOException { - new Socket("127.0.0.1", 8085); - } - - @Test - public void testServiceCall() throws IOException { - HelloWorldService helloWorldService = scaDomain.getService(HelloWorldService.class, "HelloWorldServiceComponent/HelloWorldService"); - assertNotNull(helloWorldService); - - assertEquals("Hello Smith", helloWorldService.getGreetings("Smith")); - } - - @After - public void stopServer() throws Exception { - scaDomain.close(); - } - -} -- cgit v1.2.3