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 2008/04/03 02:23:16 UTC

svn commit: r644117 [2/2] - in /incubator/tuscany/java/sca/samples/zipcode-jaxws: ./ src/ src/main/ src/main/java/ src/main/java/com/ src/main/java/com/example/ src/main/java/com/example/uszip/ src/main/java/com/example/weather/ src/main/java/location/...

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByPlaceNameResponse.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByPlaceNameResponse.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByPlaceNameResponse.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByPlaceNameResponse.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,64 @@
+
+package com.example.weather;
+
+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;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="GetWeatherByPlaceNameResult" type="{http://www.webservicex.net}WeatherForecasts"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "getWeatherByPlaceNameResult"
+})
+@XmlRootElement(name = "GetWeatherByPlaceNameResponse")
+public class GetWeatherByPlaceNameResponse {
+
+    @XmlElement(name = "GetWeatherByPlaceNameResult", required = true)
+    protected WeatherForecasts getWeatherByPlaceNameResult;
+
+    /**
+     * Gets the value of the getWeatherByPlaceNameResult property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link WeatherForecasts }
+     *     
+     */
+    public WeatherForecasts getGetWeatherByPlaceNameResult() {
+        return getWeatherByPlaceNameResult;
+    }
+
+    /**
+     * Sets the value of the getWeatherByPlaceNameResult property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link WeatherForecasts }
+     *     
+     */
+    public void setGetWeatherByPlaceNameResult(WeatherForecasts value) {
+        this.getWeatherByPlaceNameResult = value;
+    }
+
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByPlaceNameResponse.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByPlaceNameResponse.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCode.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCode.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCode.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCode.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,64 @@
+
+package com.example.weather;
+
+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;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="ZipCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "zipCode"
+})
+@XmlRootElement(name = "GetWeatherByZipCode")
+public class GetWeatherByZipCode {
+
+    @XmlElement(name = "ZipCode")
+    protected String zipCode;
+
+    /**
+     * Gets the value of the zipCode property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getZipCode() {
+        return zipCode;
+    }
+
+    /**
+     * Sets the value of the zipCode property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setZipCode(String value) {
+        this.zipCode = value;
+    }
+
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCode.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCode.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCodeResponse.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCodeResponse.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCodeResponse.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCodeResponse.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,64 @@
+
+package com.example.weather;
+
+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;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="GetWeatherByZipCodeResult" type="{http://www.webservicex.net}WeatherForecasts"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "getWeatherByZipCodeResult"
+})
+@XmlRootElement(name = "GetWeatherByZipCodeResponse")
+public class GetWeatherByZipCodeResponse {
+
+    @XmlElement(name = "GetWeatherByZipCodeResult", required = true)
+    protected WeatherForecasts getWeatherByZipCodeResult;
+
+    /**
+     * Gets the value of the getWeatherByZipCodeResult property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link WeatherForecasts }
+     *     
+     */
+    public WeatherForecasts getGetWeatherByZipCodeResult() {
+        return getWeatherByZipCodeResult;
+    }
+
+    /**
+     * Sets the value of the getWeatherByZipCodeResult property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link WeatherForecasts }
+     *     
+     */
+    public void setGetWeatherByZipCodeResult(WeatherForecasts value) {
+        this.getWeatherByZipCodeResult = value;
+    }
+
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCodeResponse.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/GetWeatherByZipCodeResponse.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/ObjectFactory.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/ObjectFactory.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/ObjectFactory.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/ObjectFactory.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,101 @@
+
+package com.example.weather;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlElementDecl;
+import javax.xml.bind.annotation.XmlRegistry;
+import javax.xml.namespace.QName;
+
+
+/**
+ * This object contains factory methods for each 
+ * Java content interface and Java element interface 
+ * generated in the com.example.weather package. 
+ * <p>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 {
+
+    private final static QName _WeatherForecasts_QNAME = new QName("http://www.webservicex.net", "WeatherForecasts");
+
+    /**
+     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.example.weather
+     * 
+     */
+    public ObjectFactory() {
+    }
+
+    /**
+     * Create an instance of {@link WeatherData }
+     * 
+     */
+    public WeatherData createWeatherData() {
+        return new WeatherData();
+    }
+
+    /**
+     * Create an instance of {@link GetWeatherByPlaceName }
+     * 
+     */
+    public GetWeatherByPlaceName createGetWeatherByPlaceName() {
+        return new GetWeatherByPlaceName();
+    }
+
+    /**
+     * Create an instance of {@link GetWeatherByPlaceNameResponse }
+     * 
+     */
+    public GetWeatherByPlaceNameResponse createGetWeatherByPlaceNameResponse() {
+        return new GetWeatherByPlaceNameResponse();
+    }
+
+    /**
+     * Create an instance of {@link GetWeatherByZipCodeResponse }
+     * 
+     */
+    public GetWeatherByZipCodeResponse createGetWeatherByZipCodeResponse() {
+        return new GetWeatherByZipCodeResponse();
+    }
+
+    /**
+     * Create an instance of {@link GetWeatherByZipCode }
+     * 
+     */
+    public GetWeatherByZipCode createGetWeatherByZipCode() {
+        return new GetWeatherByZipCode();
+    }
+
+    /**
+     * Create an instance of {@link WeatherForecasts }
+     * 
+     */
+    public WeatherForecasts createWeatherForecasts() {
+        return new WeatherForecasts();
+    }
+
+    /**
+     * Create an instance of {@link ArrayOfWeatherData }
+     * 
+     */
+    public ArrayOfWeatherData createArrayOfWeatherData() {
+        return new ArrayOfWeatherData();
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link WeatherForecasts }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://www.webservicex.net", name = "WeatherForecasts")
+    public JAXBElement<WeatherForecasts> createWeatherForecasts(WeatherForecasts value) {
+        return new JAXBElement<WeatherForecasts>(_WeatherForecasts_QNAME, WeatherForecasts.class, null, value);
+    }
+
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/ObjectFactory.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/ObjectFactory.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherData.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherData.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherData.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherData.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,202 @@
+
+package com.example.weather;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for WeatherData complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="WeatherData">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="Day" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="WeatherImage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="MaxTemperatureF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="MinTemperatureF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="MaxTemperatureC" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="MinTemperatureC" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "WeatherData", propOrder = {
+    "day",
+    "weatherImage",
+    "maxTemperatureF",
+    "minTemperatureF",
+    "maxTemperatureC",
+    "minTemperatureC"
+})
+public class WeatherData {
+
+    @XmlElement(name = "Day")
+    protected String day;
+    @XmlElement(name = "WeatherImage")
+    protected String weatherImage;
+    @XmlElement(name = "MaxTemperatureF")
+    protected String maxTemperatureF;
+    @XmlElement(name = "MinTemperatureF")
+    protected String minTemperatureF;
+    @XmlElement(name = "MaxTemperatureC")
+    protected String maxTemperatureC;
+    @XmlElement(name = "MinTemperatureC")
+    protected String minTemperatureC;
+
+    /**
+     * Gets the value of the day property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getDay() {
+        return day;
+    }
+
+    /**
+     * Sets the value of the day property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setDay(String value) {
+        this.day = value;
+    }
+
+    /**
+     * Gets the value of the weatherImage property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getWeatherImage() {
+        return weatherImage;
+    }
+
+    /**
+     * Sets the value of the weatherImage property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setWeatherImage(String value) {
+        this.weatherImage = value;
+    }
+
+    /**
+     * Gets the value of the maxTemperatureF property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getMaxTemperatureF() {
+        return maxTemperatureF;
+    }
+
+    /**
+     * Sets the value of the maxTemperatureF property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setMaxTemperatureF(String value) {
+        this.maxTemperatureF = value;
+    }
+
+    /**
+     * Gets the value of the minTemperatureF property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getMinTemperatureF() {
+        return minTemperatureF;
+    }
+
+    /**
+     * Sets the value of the minTemperatureF property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setMinTemperatureF(String value) {
+        this.minTemperatureF = value;
+    }
+
+    /**
+     * Gets the value of the maxTemperatureC property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getMaxTemperatureC() {
+        return maxTemperatureC;
+    }
+
+    /**
+     * Sets the value of the maxTemperatureC property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setMaxTemperatureC(String value) {
+        this.maxTemperatureC = value;
+    }
+
+    /**
+     * Gets the value of the minTemperatureC property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getMinTemperatureC() {
+        return minTemperatureC;
+    }
+
+    /**
+     * Sets the value of the minTemperatureC property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setMinTemperatureC(String value) {
+        this.minTemperatureC = value;
+    }
+
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherData.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherData.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecast.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecast.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecast.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecast.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,73 @@
+
+package com.example.weather;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+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;
+
+
+/**
+ * Get one week weather forecast for valid zip code or Place name in USA
+ * 
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.3-b02-
+ * Generated source version: 2.1
+ * 
+ */
+@WebServiceClient(name = "WeatherForecast", targetNamespace = "http://www.webservicex.net", wsdlLocation = "file:/C:/Tuscany/java/sca/demos/us-location/src/main/resources/wsdl/WeatherForecast.wsdl")
+public class WeatherForecast
+    extends Service
+{
+
+    private final static URL WEATHERFORECAST_WSDL_LOCATION;
+    private final static Logger logger = Logger.getLogger(com.example.weather.WeatherForecast.class.getName());
+
+    static {
+        URL url = null;
+        try {
+            URL baseUrl;
+            baseUrl = com.example.weather.WeatherForecast.class.getResource(".");
+            url = new URL(baseUrl, "file:/C:/Tuscany/java/sca/demos/us-location/src/main/resources/wsdl/WeatherForecast.wsdl");
+        } catch (MalformedURLException e) {
+            logger.warning("Failed to create URL for the wsdl Location: 'file:/C:/Tuscany/java/sca/demos/us-location/src/main/resources/wsdl/WeatherForecast.wsdl', retrying as a local file");
+            logger.warning(e.getMessage());
+        }
+        WEATHERFORECAST_WSDL_LOCATION = url;
+    }
+
+    public WeatherForecast(URL wsdlLocation, QName serviceName) {
+        super(wsdlLocation, serviceName);
+    }
+
+    public WeatherForecast() {
+        super(WEATHERFORECAST_WSDL_LOCATION, new QName("http://www.webservicex.net", "WeatherForecast"));
+    }
+
+    /**
+     * 
+     * @return
+     *     returns WeatherForecastSoap
+     */
+    @WebEndpoint(name = "WeatherForecastSoap")
+    public WeatherForecastSoap getWeatherForecastSoap() {
+        return super.getPort(new QName("http://www.webservicex.net", "WeatherForecastSoap"), WeatherForecastSoap.class);
+    }
+
+    /**
+     * 
+     * @param features
+     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the <code>features</code> parameter will have their default values.
+     * @return
+     *     returns WeatherForecastSoap
+     */
+    @WebEndpoint(name = "WeatherForecastSoap")
+    public WeatherForecastSoap getWeatherForecastSoap(WebServiceFeature... features) {
+        return super.getPort(new QName("http://www.webservicex.net", "WeatherForecastSoap"), WeatherForecastSoap.class, features);
+    }
+
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecast.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecast.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecastSoap.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecastSoap.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecastSoap.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecastSoap.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,56 @@
+
+package com.example.weather;
+
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.3-b02-
+ * Generated source version: 2.1
+ * 
+ */
+@WebService(name = "WeatherForecastSoap", targetNamespace = "http://www.webservicex.net")
+@XmlSeeAlso({
+    ObjectFactory.class
+})
+public interface WeatherForecastSoap {
+
+
+    /**
+     * Get one week weather forecast for a valid Zip Code(USA)
+     * 
+     * @param zipCode
+     * @return
+     *     returns com.example.weather.WeatherForecasts
+     */
+    @WebMethod(operationName = "GetWeatherByZipCode", action = "http://www.webservicex.net/GetWeatherByZipCode")
+    @WebResult(name = "GetWeatherByZipCodeResult", targetNamespace = "http://www.webservicex.net")
+    @RequestWrapper(localName = "GetWeatherByZipCode", targetNamespace = "http://www.webservicex.net", className = "com.example.weather.GetWeatherByZipCode")
+    @ResponseWrapper(localName = "GetWeatherByZipCodeResponse", targetNamespace = "http://www.webservicex.net", className = "com.example.weather.GetWeatherByZipCodeResponse")
+    public WeatherForecasts getWeatherByZipCode(
+        @WebParam(name = "ZipCode", targetNamespace = "http://www.webservicex.net")
+        String zipCode);
+
+    /**
+     * Get one week  weather forecast for a place name(USA)
+     * 
+     * @param placeName
+     * @return
+     *     returns com.example.weather.WeatherForecasts
+     */
+    @WebMethod(operationName = "GetWeatherByPlaceName", action = "http://www.webservicex.net/GetWeatherByPlaceName")
+    @WebResult(name = "GetWeatherByPlaceNameResult", targetNamespace = "http://www.webservicex.net")
+    @RequestWrapper(localName = "GetWeatherByPlaceName", targetNamespace = "http://www.webservicex.net", className = "com.example.weather.GetWeatherByPlaceName")
+    @ResponseWrapper(localName = "GetWeatherByPlaceNameResponse", targetNamespace = "http://www.webservicex.net", className = "com.example.weather.GetWeatherByPlaceNameResponse")
+    public WeatherForecasts getWeatherByPlaceName(
+        @WebParam(name = "PlaceName", targetNamespace = "http://www.webservicex.net")
+        String placeName);
+
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecastSoap.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecastSoap.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecasts.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecasts.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecasts.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecasts.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,234 @@
+
+package com.example.weather;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for WeatherForecasts complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="WeatherForecasts">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="Latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         &lt;element name="Longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         &lt;element name="AllocationFactor" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         &lt;element name="FipsCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="PlaceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="StateCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="Status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="Details" type="{http://www.webservicex.net}ArrayOfWeatherData" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "WeatherForecasts", propOrder = {
+    "latitude",
+    "longitude",
+    "allocationFactor",
+    "fipsCode",
+    "placeName",
+    "stateCode",
+    "status",
+    "details"
+})
+public class WeatherForecasts {
+
+    @XmlElement(name = "Latitude")
+    protected float latitude;
+    @XmlElement(name = "Longitude")
+    protected float longitude;
+    @XmlElement(name = "AllocationFactor")
+    protected float allocationFactor;
+    @XmlElement(name = "FipsCode")
+    protected String fipsCode;
+    @XmlElement(name = "PlaceName")
+    protected String placeName;
+    @XmlElement(name = "StateCode")
+    protected String stateCode;
+    @XmlElement(name = "Status")
+    protected String status;
+    @XmlElement(name = "Details")
+    protected ArrayOfWeatherData details;
+
+    /**
+     * Gets the value of the latitude property.
+     * 
+     */
+    public float getLatitude() {
+        return latitude;
+    }
+
+    /**
+     * Sets the value of the latitude property.
+     * 
+     */
+    public void setLatitude(float value) {
+        this.latitude = value;
+    }
+
+    /**
+     * Gets the value of the longitude property.
+     * 
+     */
+    public float getLongitude() {
+        return longitude;
+    }
+
+    /**
+     * Sets the value of the longitude property.
+     * 
+     */
+    public void setLongitude(float value) {
+        this.longitude = value;
+    }
+
+    /**
+     * Gets the value of the allocationFactor property.
+     * 
+     */
+    public float getAllocationFactor() {
+        return allocationFactor;
+    }
+
+    /**
+     * Sets the value of the allocationFactor property.
+     * 
+     */
+    public void setAllocationFactor(float value) {
+        this.allocationFactor = value;
+    }
+
+    /**
+     * Gets the value of the fipsCode property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getFipsCode() {
+        return fipsCode;
+    }
+
+    /**
+     * Sets the value of the fipsCode property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setFipsCode(String value) {
+        this.fipsCode = value;
+    }
+
+    /**
+     * Gets the value of the placeName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getPlaceName() {
+        return placeName;
+    }
+
+    /**
+     * Sets the value of the placeName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setPlaceName(String value) {
+        this.placeName = value;
+    }
+
+    /**
+     * Gets the value of the stateCode property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getStateCode() {
+        return stateCode;
+    }
+
+    /**
+     * Sets the value of the stateCode property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setStateCode(String value) {
+        this.stateCode = value;
+    }
+
+    /**
+     * Gets the value of the status property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getStatus() {
+        return status;
+    }
+
+    /**
+     * Sets the value of the status property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setStatus(String value) {
+        this.status = value;
+    }
+
+    /**
+     * Gets the value of the details property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ArrayOfWeatherData }
+     *     
+     */
+    public ArrayOfWeatherData getDetails() {
+        return details;
+    }
+
+    /**
+     * Sets the value of the details property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ArrayOfWeatherData }
+     *     
+     */
+    public void setDetails(ArrayOfWeatherData value) {
+        this.details = value;
+    }
+
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecasts.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/WeatherForecasts.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/package-info.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/package-info.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/package-info.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/package-info.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,2 @@
+@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.webservicex.net", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
+package com.example.weather;

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/com/example/weather/package-info.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/LocationClient.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/LocationClient.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/LocationClient.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/LocationClient.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,55 @@
+/*
+ * 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 location;
+
+import java.io.StringWriter;
+
+import javax.xml.bind.JAXBContext;
+import javax.xml.bind.Marshaller;
+
+import org.apache.tuscany.sca.host.embedded.SCADomain;
+
+import com.example.uszip.GetInfoByZIPResponse;
+import com.example.uszip.USZipSoap;
+
+/**
+ * This client program to invoke the Mortgage LoanApproval service
+ */
+public class LocationClient {
+
+    public static void main(String[] args) throws Exception {
+
+        SCADomain domain = SCADomain.newInstance("USLocation.composite");
+        USZipSoap zipService = domain.getService(USZipSoap.class, "USLocationService");
+
+        GetInfoByZIPResponse.GetInfoByZIPResult result = zipService.getInfoByZIP("94555");
+
+        GetInfoByZIPResponse response = new GetInfoByZIPResponse();
+        response.setGetInfoByZIPResult(result);
+
+        JAXBContext context = JAXBContext.newInstance(GetInfoByZIPResponse.class);
+        StringWriter writer = new StringWriter();
+        Marshaller marshaller = context.createMarshaller();
+        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
+        marshaller.marshal(response, writer);
+
+        String xml = writer.toString();
+        System.out.println(xml);
+    }
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/LocationClient.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/LocationClient.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/USLocationImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/USLocationImpl.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/USLocationImpl.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/USLocationImpl.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,56 @@
+/*
+ * 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 location;
+
+import org.osoa.sca.annotations.AllowsPassByReference;
+import org.osoa.sca.annotations.Reference;
+import org.osoa.sca.annotations.Service;
+
+import com.example.uszip.USZipSoap;
+import com.example.uszip.GetInfoByAreaCodeResponse.GetInfoByAreaCodeResult;
+import com.example.uszip.GetInfoByCityResponse.GetInfoByCityResult;
+import com.example.uszip.GetInfoByStateResponse.GetInfoByStateResult;
+import com.example.uszip.GetInfoByZIPResponse.GetInfoByZIPResult;
+
+/**
+ * @version $Rev$ $Date$
+ */
+@Service(USZipSoap.class)
+@AllowsPassByReference
+public class USLocationImpl implements USZipSoap {
+    @Reference
+    protected USZipSoap usZipService;
+    
+    public GetInfoByAreaCodeResult getInfoByAreaCode(String usAreaCode) {
+        return usZipService.getInfoByAreaCode(usAreaCode);
+    }
+
+    public GetInfoByCityResult getInfoByCity(String usCity) {
+        return usZipService.getInfoByCity(usCity);
+    }
+
+    public GetInfoByStateResult getInfoByState(String usState) {
+        return usZipService.getInfoByState(usState);
+    }
+
+    public GetInfoByZIPResult getInfoByZIP(String usZip) {
+        return usZipService.getInfoByZIP(usZip);
+    }
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/USLocationImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/location/USLocationImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastClient.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastClient.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastClient.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastClient.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,60 @@
+/*
+ * 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 weather;
+
+import java.io.StringWriter;
+
+import javax.xml.bind.JAXBContext;
+import javax.xml.bind.Marshaller;
+
+import org.apache.tuscany.sca.host.embedded.SCADomain;
+
+import com.example.weather.GetWeatherByZipCodeResponse;
+import com.example.weather.WeatherForecastSoap;
+import com.example.weather.WeatherForecasts;
+
+/**
+ * This client program to invoke the Mortgage LoanApproval service
+ */
+public class WeatherForecastClient {
+
+    public static void main(String[] args) throws Exception {
+
+        SCADomain domain = SCADomain.newInstance("WeatherForecast.composite");
+        WeatherForecastSoap weatherService = domain.getService(WeatherForecastSoap.class, "WeatherForecastService");
+
+        WeatherForecasts result = weatherService.getWeatherByZipCode("94555");
+
+        // Dump the result as XML
+        
+        // Wrap the result so that it can be marshaled 
+        GetWeatherByZipCodeResponse response = new GetWeatherByZipCodeResponse();
+        response.setGetWeatherByZipCodeResult(result);
+
+        // Marshal the JAXB object into XML
+        JAXBContext context = JAXBContext.newInstance(GetWeatherByZipCodeResponse.class);
+        StringWriter writer = new StringWriter();
+        Marshaller marshaller = context.createMarshaller();
+        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
+        marshaller.marshal(response, writer);
+
+        String xml = writer.toString();
+        System.out.println(xml);
+    }
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastClient.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastClient.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastImpl.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastImpl.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastImpl.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,43 @@
+/*
+ * 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 weather;
+
+import org.osoa.sca.annotations.Reference;
+import org.osoa.sca.annotations.Service;
+
+import com.example.weather.WeatherForecastSoap;
+import com.example.weather.WeatherForecasts;
+
+/**
+ * @version $Rev$ $Date$
+ */
+@Service(WeatherForecastSoap.class)
+public class WeatherForecastImpl implements WeatherForecastSoap{
+    @Reference
+    protected WeatherForecastSoap weatherForecast;
+
+    public WeatherForecasts getWeatherByPlaceName(String placeName) {
+        return weatherForecast.getWeatherByPlaceName(placeName);
+    }
+
+    public WeatherForecasts getWeatherByZipCode(String zipCode) {
+        return weatherForecast.getWeatherByZipCode(zipCode);
+    }
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeClient.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeClient.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeClient.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeClient.java Wed Apr  2 17:23:13 2008
@@ -0,0 +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 zipcode;
+
+import org.apache.tuscany.sca.host.embedded.SCADomain;
+
+/**
+ * This client program to invoke the Mortgage LoanApproval service
+ */
+public class ZipCodeClient {
+
+    public static void main(String[] args) throws Exception {
+
+        SCADomain domain = SCADomain.newInstance("ZipCode.composite");
+        ZipCodeService zipService = domain.getService(ZipCodeService.class, "ZipCodeService");
+
+        String result = zipService.lookup("94555");
+        System.out.println(result);
+    }
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeClient.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeClient.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeService.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeService.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeService.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeService.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,30 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.    
+ */
+
+package zipcode;
+
+import org.osoa.sca.annotations.Remotable;
+
+/**
+ * @version $Rev$ $Date$
+ */
+@Remotable
+public interface ZipCodeService {
+    String lookup(String zipCode);
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeService.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeService.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeServiceImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeServiceImpl.java?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeServiceImpl.java (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeServiceImpl.java Wed Apr  2 17:23:13 2008
@@ -0,0 +1,82 @@
+/*
+ * 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 zipcode;
+
+import java.io.StringWriter;
+
+import javax.xml.bind.JAXBContext;
+import javax.xml.bind.Marshaller;
+
+import org.osoa.sca.ServiceRuntimeException;
+import org.osoa.sca.annotations.AllowsPassByReference;
+import org.osoa.sca.annotations.Reference;
+import org.osoa.sca.annotations.Service;
+
+import com.example.uszip.GetInfoByZIPResponse;
+import com.example.uszip.USZipSoap;
+import com.example.uszip.GetInfoByZIPResponse.GetInfoByZIPResult;
+import com.example.weather.GetWeatherByZipCodeResponse;
+import com.example.weather.WeatherForecastSoap;
+import com.example.weather.WeatherForecasts;
+
+/**
+ * @version $Rev$ $Date$
+ */
+@Service(ZipCodeService.class)
+@AllowsPassByReference
+public class ZipCodeServiceImpl implements ZipCodeService {
+    @Reference
+    protected USZipSoap usZipService;
+
+    @Reference
+    protected WeatherForecastSoap weatherForecast;
+
+    public String lookup(String zipCode) {
+        GetInfoByZIPResult result1 = usZipService.getInfoByZIP(zipCode);
+
+        GetInfoByZIPResponse response1 = new GetInfoByZIPResponse();
+        response1.setGetInfoByZIPResult(result1);
+
+        String xml1 = toXML(response1);
+
+        WeatherForecasts result2 = weatherForecast.getWeatherByZipCode(zipCode);
+        // Wrap the result so that it can be marshaled 
+        GetWeatherByZipCodeResponse response2 = new GetWeatherByZipCodeResponse();
+        response2.setGetWeatherByZipCodeResult(result2);
+
+        String xml2 = toXML(response2);
+        // Marshal the JAXB object into XML
+        return xml1 + "\n" + xml2;
+    }
+
+    private String toXML(Object jaxb) {
+        try {
+            JAXBContext context = JAXBContext.newInstance(jaxb.getClass());
+            StringWriter writer = new StringWriter();
+            Marshaller marshaller = context.createMarshaller();
+            marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
+            marshaller.marshal(jaxb, writer);
+            return writer.toString();
+        } catch (Exception e) {
+            throw new ServiceRuntimeException(e);
+        }
+    }
+
+}

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeServiceImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeServiceImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/USLocation.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/USLocation.composite?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/USLocation.composite (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/USLocation.composite Wed Apr  2 17:23:13 2008
@@ -0,0 +1,30 @@
+<?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.    
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.0"
+    targetNamespace="http://location" name="USLocation">
+
+    <component name="USLocationService">
+        <implementation.java class="location.USLocationImpl" />
+        <reference name="usZipService">
+            <binding.ws wsdlElement="http://www.webserviceX.NET#wsdl.port(USZip/USZipSoap)" />
+        </reference>
+    </component>
+
+</composite>

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/WeatherForecast.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/WeatherForecast.composite?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/WeatherForecast.composite (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/WeatherForecast.composite Wed Apr  2 17:23:13 2008
@@ -0,0 +1,30 @@
+<?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.    
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.0"
+    targetNamespace="http://weather" name="WeatherForecast">
+
+    <component name="WeatherForecastService">
+        <implementation.java class="weather.WeatherForecastImpl" />
+        <reference name="weatherForecast">
+            <binding.ws wsdlElement="http://www.webservicex.net#wsdl.port(WeatherForecast/WeatherForecastSoap)" />
+        </reference>
+    </component>
+
+</composite>

Added: incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/ZipCode.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/ZipCode.composite?rev=644117&view=auto
==============================================================================
--- incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/ZipCode.composite (added)
+++ incubator/tuscany/java/sca/samples/zipcode-jaxws/src/main/resources/ZipCode.composite Wed Apr  2 17:23:13 2008
@@ -0,0 +1,33 @@
+<?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.    
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.0"
+    targetNamespace="http://zipcode" name="ZipCode">
+
+    <component name="ZipCodeService">
+        <implementation.java class="zipcode.ZipCodeServiceImpl" />
+        <reference name="usZipService">
+            <binding.ws wsdlElement="http://www.webserviceX.NET#wsdl.port(USZip/USZipSoap)" />
+        </reference>
+        <reference name="weatherForecast">
+            <binding.ws wsdlElement="http://www.webservicex.net#wsdl.port(WeatherForecast/WeatherForecastSoap)" />
+        </reference>
+    </component>
+
+</composite>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org