You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-dev@ws.apache.org by sc...@apache.org on 2005/05/31 22:35:00 UTC

svn commit: r179272 - in /incubator/muse/trunk: advertiser-xbeans/src/wsdl/ src/ieeedemo/src/java/org/wsdmdemo/service/ src/ieeedemo/src/java/org/wsdmdemo/service/weatherClientConfig/ src/ieeedemo/src/java/org/wsdmdemo/service/weatherStation/ src/ieeedemo/src/java/org/wsdmdemo/service/weatherStationDir/ src/ieeedemo/src/wsdl/ src/site/content/interop/src/java/org/apache/ws/resource/example/blackberry/ src/site/content/interop/src/java/org/everest/ src/site/content/interop/src/java/org/everestWeather/wsdm/samples/x2005/x04/schema/ src/site/content/tutorial/

Author: scamp
Date: Tue May 31 13:34:59 2005
New Revision: 179272

URL: http://svn.apache.org/viewcvs?rev=179272&view=rev
Log: (empty)

Modified:
    incubator/muse/trunk/advertiser-xbeans/src/wsdl/ResourceAdvertiser.wsdl
    incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/InteropRequestUtils.java
    incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherClientConfig/AbstractWeatherClientConfigService.java
    incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherClientConfig/WeatherClientConfigService.java
    incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStation/AbstractWeatherStationService.java
    incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStation/WeatherStationService.java
    incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStationDir/AbstractWeatherStationDirService.java
    incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStationDir/WeatherStationDirHome.java
    incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-client-config.wsdl
    incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-station-dir.wsdl
    incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-station.wsdl
    incubator/muse/trunk/src/site/content/interop/src/java/org/apache/ws/resource/example/blackberry/BlackberryHome.java
    incubator/muse/trunk/src/site/content/interop/src/java/org/everest/WeatherStationSoapHome.java
    incubator/muse/trunk/src/site/content/interop/src/java/org/everestWeather/wsdm/samples/x2005/x04/schema/WeatherstationHome.java
    incubator/muse/trunk/src/site/content/interop/src/java/org/everestWeather/wsdm/samples/x2005/x04/schema/WeatherstationResource.java
    incubator/muse/trunk/src/site/content/tutorial/_TEMPLATE_.wsdl

Modified: incubator/muse/trunk/advertiser-xbeans/src/wsdl/ResourceAdvertiser.wsdl
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/advertiser-xbeans/src/wsdl/ResourceAdvertiser.wsdl?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/advertiser-xbeans/src/wsdl/ResourceAdvertiser.wsdl (original)
+++ incubator/muse/trunk/advertiser-xbeans/src/wsdl/ResourceAdvertiser.wsdl Tue May 31 13:34:59 2005
@@ -31,7 +31,7 @@
               xmlns:muws-p2-xs="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd">
 
          <xsd:import namespace="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-BaseFaults-1.2-draft-01.xsd"
-                     schemaLocation="../spec/wsrf/WS-BaseFaults-1_2.xsd"/>
+                     schemaLocation="../spec/wsrf/WS-BaseFaults-1_2-Draft_01.xsd"/>
 
          <xsd:import namespace="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd" 
                      schemaLocation="../spec/wsn/WS-BaseNotification-1_2-Draft_01.xsd"/>

Modified: incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/InteropRequestUtils.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/InteropRequestUtils.java?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/InteropRequestUtils.java (original)
+++ incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/InteropRequestUtils.java Tue May 31 13:34:59 2005
@@ -1,18 +1,17 @@
 package org.wsdmdemo.service;
 
-import org.xmlsoap.schemas.soap.envelope.EnvelopeDocument;
-import org.xmlsoap.schemas.soap.envelope.Envelope;
-import org.xmlsoap.schemas.soap.envelope.Header;
-import org.apache.xmlbeans.XmlObject;
+import org.apache.axis.message.addressing.Constants;
+import org.apache.ws.XmlObjectWrapper;
 import org.apache.ws.addressing.EndpointReference;
 import org.apache.ws.util.XmlBeanUtils;
 import org.apache.ws.util.soap.SoapClient;
-import org.apache.ws.XmlObjectWrapper;
-import org.apache.axis.message.addressing.Constants;
-import org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument;
+import org.apache.xmlbeans.XmlObject;
+import org.xmlsoap.schemas.soap.envelope.Envelope;
+import org.xmlsoap.schemas.soap.envelope.EnvelopeDocument;
+import org.xmlsoap.schemas.soap.envelope.Header;
 
-import java.net.URL;
 import java.net.URI;
+import java.net.URL;
 
 
 /**

Modified: incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherClientConfig/AbstractWeatherClientConfigService.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherClientConfig/AbstractWeatherClientConfigService.java?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherClientConfig/AbstractWeatherClientConfigService.java (original)
+++ incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherClientConfig/AbstractWeatherClientConfigService.java Tue May 31 13:34:59 2005
@@ -1,11 +1,11 @@
 
 package org.wsdmdemo.service.weatherClientConfig;
 
-import org.apache.ws.resource.ResourceContext;
-import org.apache.ws.resource.handler.SoapMethodNameMap;
-import org.apache.ws.resource.handler.WsrfService;
 import org.apache.ws.resource.AbstractPortType;
+import org.apache.ws.resource.ResourceContext;
 import org.apache.ws.resource.handler.ServiceSoapMethodNameMap;
+import org.apache.ws.resource.handler.SoapMethodNameMap;
+
 import javax.xml.namespace.QName;
 
 /**
@@ -17,7 +17,7 @@
  * NOTE: This class is generated and is NOT meant to be modified.
  */
 public abstract class AbstractWeatherClientConfigService extends AbstractPortType
-    implements org.apache.ws.resource.handler.WsrfService, org.apache.ws.resource.properties.v2004_06.porttype.SetResourcePropertiesPortType, org.apache.ws.resource.properties.v2004_06.porttype.GetMultipleResourcePropertiesPortType, org.apache.ws.resource.properties.v2004_06.porttype.GetResourcePropertyPortType, org.apache.ws.notification.base.v2004_06.porttype.NotificationProducerPortType {
+    implements org.apache.ws.resource.handler.WsrfService, org.apache.ws.resource.properties.v2004_06.porttype.SetResourcePropertiesPortType, org.apache.ws.resource.properties.v2004_06.porttype.GetMultipleResourcePropertiesPortType, org.apache.ws.resource.properties.v2004_06.porttype.GetResourcePropertyPortType, org.apache.ws.notification.base.v2004_06.porttype.NotificationProducerPortType{
 
    public static final String TARGET_NSURI = "http://wsdmdemo.org/service/weather-client-config";
    public static final String TARGET_NSPREFIX = "weather-client-config";
@@ -143,7 +143,6 @@
    {
        return new org.apache.ws.notification.base.v2004_06.porttype.impl.NotificationProducerPortTypeImpl( getResourceContext(  ) ).getCurrentMessage( requestDoc );
    }
-    
 
 
 }

Modified: incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherClientConfig/WeatherClientConfigService.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherClientConfig/WeatherClientConfigService.java?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherClientConfig/WeatherClientConfigService.java (original)
+++ incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherClientConfig/WeatherClientConfigService.java Tue May 31 13:34:59 2005
@@ -1,10 +1,6 @@
 package org.wsdmdemo.service.weatherClientConfig;
 
 import org.apache.ws.resource.ResourceContext;
-import org.apache.xmlbeans.XmlObject;
-import org.apache.xmlbeans.XmlException;
-
-import javax.xml.rpc.JAXRPCException;
 
 /**
  * **** NOTE: This file will not be overwritten during generation ****

Modified: incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStation/AbstractWeatherStationService.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStation/AbstractWeatherStationService.java?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStation/AbstractWeatherStationService.java (original)
+++ incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStation/AbstractWeatherStationService.java Tue May 31 13:34:59 2005
@@ -1,11 +1,11 @@
 
 package org.wsdmdemo.service.weatherStation;
 
-import org.apache.ws.resource.ResourceContext;
-import org.apache.ws.resource.handler.SoapMethodNameMap;
-import org.apache.ws.resource.handler.WsrfService;
 import org.apache.ws.resource.AbstractPortType;
+import org.apache.ws.resource.ResourceContext;
 import org.apache.ws.resource.handler.ServiceSoapMethodNameMap;
+import org.apache.ws.resource.handler.SoapMethodNameMap;
+
 import javax.xml.namespace.QName;
 
 /**
@@ -133,6 +133,5 @@
        return new org.apache.ws.notification.base.v2004_06.porttype.impl.NotificationProducerPortTypeImpl( getResourceContext(  ) ).getCurrentMessage( requestDoc );
    }
     
-
 
 }

Modified: incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStation/WeatherStationService.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStation/WeatherStationService.java?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStation/WeatherStationService.java (original)
+++ incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStation/WeatherStationService.java Tue May 31 13:34:59 2005
@@ -1,20 +1,18 @@
 package org.wsdmdemo.service.weatherStation;
 
-import org.apache.ws.resource.ResourceContext;
 import org.apache.ws.resource.PropertiesResource;
-import org.apache.ws.resource.properties.v2004_06.porttype.impl.SetResourcePropertiesPortTypeImpl;
+import org.apache.ws.resource.ResourceContext;
 import org.apache.ws.resource.properties.ResourceProperty;
+import org.apache.ws.resource.properties.v2004_06.porttype.impl.SetResourcePropertiesPortTypeImpl;
 import org.apache.ws.util.XmlBeanUtils;
 import org.apache.xmlbeans.XmlObject;
 import org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument;
 import org.oasisOpen.docs.wsrf.x2004.x06.wsrfWSResourceProperties12Draft01.SetResourcePropertiesDocument;
 import org.oasisOpen.docs.wsrf.x2004.x06.wsrfWSResourceProperties12Draft01.SetResourcePropertiesResponseDocument;
 import org.oasisOpen.docs.wsrf.x2004.x06.wsrfWSResourceProperties12Draft01.UpdateType;
-import org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument;
-import org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument;
-import org.wsdmdemo.service.weatherStationDir.WeatherStationDirHome;
-import org.wsdmdemo.service.InteropRequestUtils;
 import org.wsdmdemo.service.InteropConstants;
+import org.wsdmdemo.service.InteropRequestUtils;
+import org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument;
 
 /**
  * **** NOTE: This file will not be overwritten during generation ****

Modified: incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStationDir/AbstractWeatherStationDirService.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStationDir/AbstractWeatherStationDirService.java?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStationDir/AbstractWeatherStationDirService.java (original)
+++ incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStationDir/AbstractWeatherStationDirService.java Tue May 31 13:34:59 2005
@@ -1,11 +1,11 @@
 
 package org.wsdmdemo.service.weatherStationDir;
 
-import org.apache.ws.resource.ResourceContext;
-import org.apache.ws.resource.handler.SoapMethodNameMap;
-import org.apache.ws.resource.handler.WsrfService;
 import org.apache.ws.resource.AbstractPortType;
+import org.apache.ws.resource.ResourceContext;
 import org.apache.ws.resource.handler.ServiceSoapMethodNameMap;
+import org.apache.ws.resource.handler.SoapMethodNameMap;
+
 import javax.xml.namespace.QName;
 
 /**
@@ -17,7 +17,7 @@
  * NOTE: This class is generated and is NOT meant to be modified.
  */
 public abstract class AbstractWeatherStationDirService extends AbstractPortType
-    implements org.apache.ws.resource.handler.WsrfService, org.apache.ws.resource.properties.v2004_06.porttype.GetMultipleResourcePropertiesPortType, org.apache.ws.resource.properties.v2004_06.porttype.GetResourcePropertyPortType, org.apache.ws.notification.base.v2004_06.porttype.NotificationProducerPortType, org.apache.ws.muws.v1_0.capability.RelationshipsCapability {
+    implements org.apache.ws.resource.handler.WsrfService, org.apache.ws.resource.properties.v2004_06.porttype.GetMultipleResourcePropertiesPortType, org.apache.ws.resource.properties.v2004_06.porttype.GetResourcePropertyPortType, org.apache.ws.notification.base.v2004_06.porttype.NotificationProducerPortType {
 
    public static final String TARGET_NSURI = "http://wsdmdemo.org/service/weather-station-dir";
    public static final String TARGET_NSPREFIX = "weather-station-dir";
@@ -134,13 +134,6 @@
        return new org.apache.ws.notification.base.v2004_06.porttype.impl.NotificationProducerPortTypeImpl( getResourceContext(  ) ).getCurrentMessage( requestDoc );
    }
     
-
-
-org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.QueryRelationshipsByTypeResponseDocument queryRelationshipsByType( org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.QueryRelationshipsByTypeDocument requestDoc )
-{
-   return new org.apache.ws.muws.v1_0.capability.impl.RelationshipsCapabilityImpl( getResourceContext(  ) ).queryRelationshipsByType( requestDoc );
-}
-
 
 
 }

Modified: incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStationDir/WeatherStationDirHome.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStationDir/WeatherStationDirHome.java?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStationDir/WeatherStationDirHome.java (original)
+++ incubator/muse/trunk/src/ieeedemo/src/java/org/wsdmdemo/service/weatherStationDir/WeatherStationDirHome.java Tue May 31 13:34:59 2005
@@ -1,11 +1,9 @@
 package org.wsdmdemo.service.weatherStationDir;
 
-import org.apache.ws.addressing.EndpointReference;
 import org.apache.ws.resource.Resource;
 import org.apache.ws.resource.ResourceContext;
 import org.apache.ws.resource.ResourceContextException;
 import org.apache.ws.resource.ResourceException;
-import org.apache.ws.resource.ResourceKey;
 import org.apache.ws.resource.ResourceUnknownException;
 import org.apache.ws.resource.impl.AbstractResourceHome;
 

Modified: incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-client-config.wsdl
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-client-config.wsdl?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-client-config.wsdl (original)
+++ incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-client-config.wsdl Tue May 31 13:34:59 2005
@@ -25,7 +25,7 @@
       xmlns:muws-p1-xs="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd"
       xmlns:muws-p2-xs="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd">
 
-      <xsd:import namespace="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-BaseFaults-1.2-draft-01.xsd" schemaLocation="../spec/wsrf/WS-BaseFaults-1_2.xsd"/>
+      <xsd:import namespace="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-BaseFaults-1.2-draft-01.xsd" schemaLocation="../spec/wsrf/WS-BaseFaults-1_2-Draft_01.xsd"/>
       <xsd:import namespace="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd" schemaLocation="../spec/wsn/WS-BaseNotification-1_2-Draft_01.xsd"/>
       <xsd:import namespace="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd" schemaLocation="../spec/wsdm/MUWS-Part1-1_0.xsd"/>
       <xsd:import namespace="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd" schemaLocation="../spec/wsdm/MUWS-Part2-1_0.xsd"/>

Modified: incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-station-dir.wsdl
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-station-dir.wsdl?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-station-dir.wsdl (original)
+++ incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-station-dir.wsdl Tue May 31 13:34:59 2005
@@ -8,7 +8,7 @@
 
   <types>
     <schema elementFormDefault="qualified" targetNamespace="http://wsdmdemo.org/service/weather-station-dir" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsbf="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-BaseFaults-1.2-draft-01.xsd" xmlns:wsnt="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd" xmlns:muws-p1-xs="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd" xmlns:muws-p2-xs="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
-      <xsd:import namespace="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-BaseFaults-1.2-draft-01.xsd" schemaLocation="../spec/wsrf/WS-BaseFaults-1_2.xsd"/>
+      <xsd:import namespace="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-BaseFaults-1.2-draft-01.xsd" schemaLocation="../spec/wsrf/WS-BaseFaults-1_2-Draft_01.xsd"/>
       <xsd:import namespace="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd" schemaLocation="../spec/wsn/WS-BaseNotification-1_2-Draft_01.xsd"/>
       <xsd:import namespace="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd" schemaLocation="../spec/wsdm/MUWS-Part1-1_0.xsd"/>
       <xsd:import namespace="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd" schemaLocation="../spec/wsdm/MUWS-Part2-1_0.xsd"/>

Modified: incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-station.wsdl
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-station.wsdl?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-station.wsdl (original)
+++ incubator/muse/trunk/src/ieeedemo/src/wsdl/weather-station.wsdl Tue May 31 13:34:59 2005
@@ -31,7 +31,7 @@
       xmlns:muws-p2-xs="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd">
 
       <xsd:import namespace="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-BaseFaults-1.2-draft-01.xsd"
-        schemaLocation="../spec/wsrf/WS-BaseFaults-1_2.xsd"/>
+        schemaLocation="../spec/wsrf/WS-BaseFaults-1_2-Draft_01.xsd"/>
 
       <xsd:import namespace="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceLifetime-1.2-draft-01.xsd"
         schemaLocation="../spec/wsrf/WS-ResourceLifetime-1_2.xsd"/>

Modified: incubator/muse/trunk/src/site/content/interop/src/java/org/apache/ws/resource/example/blackberry/BlackberryHome.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/java/org/apache/ws/resource/example/blackberry/BlackberryHome.java?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/java/org/apache/ws/resource/example/blackberry/BlackberryHome.java (original)
+++ incubator/muse/trunk/src/site/content/interop/src/java/org/apache/ws/resource/example/blackberry/BlackberryHome.java Tue May 31 13:34:59 2005
@@ -37,7 +37,7 @@
     /**
      * The name of the resource key for this resource. *
      */
-    public static final QName RESOURCE_KEY_NAME = javax.xml.namespace.QName.valueOf("{${resourcekey.NamespaceURI}}${resourcekey.LocalPart}");
+    public static final QName RESOURCE_KEY_NAME = javax.xml.namespace.QName.valueOf("{http://ws.apache.org/resource/example/blackberry}ResourceID");
 
     /**
      * A NamespaceVerionHolder which maintains the QNames of Spec Wsdls

Modified: incubator/muse/trunk/src/site/content/interop/src/java/org/everest/WeatherStationSoapHome.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/java/org/everest/WeatherStationSoapHome.java?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/java/org/everest/WeatherStationSoapHome.java (original)
+++ incubator/muse/trunk/src/site/content/interop/src/java/org/everest/WeatherStationSoapHome.java Tue May 31 13:34:59 2005
@@ -37,7 +37,7 @@
     /**
      * The name of the resource key for this resource. *
      */
-    public static final QName RESOURCE_KEY_NAME = javax.xml.namespace.QName.valueOf("{${resourcekey.NamespaceURI}}${resourcekey.LocalPart}");
+    public static final QName RESOURCE_KEY_NAME = javax.xml.namespace.QName.valueOf("{http://everest.org/}ResourceID");
 
     /**
      * A NamespaceVerionHolder which maintains the QNames of Spec Wsdls

Modified: incubator/muse/trunk/src/site/content/interop/src/java/org/everestWeather/wsdm/samples/x2005/x04/schema/WeatherstationHome.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/java/org/everestWeather/wsdm/samples/x2005/x04/schema/WeatherstationHome.java?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/java/org/everestWeather/wsdm/samples/x2005/x04/schema/WeatherstationHome.java (original)
+++ incubator/muse/trunk/src/site/content/interop/src/java/org/everestWeather/wsdm/samples/x2005/x04/schema/WeatherstationHome.java Tue May 31 13:34:59 2005
@@ -38,7 +38,7 @@
     /**
      * The name of the resource key for this resource. *
      */
-    public static final QName RESOURCE_KEY_NAME = javax.xml.namespace.QName.valueOf("{${resourcekey.NamespaceURI}}${resourcekey.LocalPart}");
+    public static final QName RESOURCE_KEY_NAME = javax.xml.namespace.QName.valueOf("{http://everest-weather.org/wsdm/samples/2005/04/schema}ResourceID");
 
     /**
      * A NamespaceVerionHolder which maintains the QNames of Spec Wsdls

Modified: incubator/muse/trunk/src/site/content/interop/src/java/org/everestWeather/wsdm/samples/x2005/x04/schema/WeatherstationResource.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/java/org/everestWeather/wsdm/samples/x2005/x04/schema/WeatherstationResource.java?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/java/org/everestWeather/wsdm/samples/x2005/x04/schema/WeatherstationResource.java (original)
+++ incubator/muse/trunk/src/site/content/interop/src/java/org/everestWeather/wsdm/samples/x2005/x04/schema/WeatherstationResource.java Tue May 31 13:34:59 2005
@@ -290,7 +290,7 @@
 
             resourceProperty = resourcePropertySet.get(WeatherstationPropertyQNames.NUMBEROFSUCCESSFULREQUESTS);
             NumberOfSuccessfulRequestsDocument numberOfSuccessfulRequestsDocument = NumberOfSuccessfulRequestsDocument.Factory.newInstance();
-            IntegerCounter successIntegerCounter = numberOfSuccessfulRequestsDocument.addNewNumberOfSuccessfulRequests();
+            IntegerCounter successIntegerCounter = numberOfSuccessfulRequestsDocument.addNewNumberOfSuccessfulRequests();            
             successIntegerCounter.setBigIntegerValue(BigInteger.valueOf(90L));
             successIntegerCounter.setResetAt(resetAt);
             resourceProperty.add(numberOfSuccessfulRequestsDocument);

Modified: incubator/muse/trunk/src/site/content/tutorial/_TEMPLATE_.wsdl
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/tutorial/_TEMPLATE_.wsdl?rev=179272&r1=179271&r2=179272&view=diff
==============================================================================
--- incubator/muse/trunk/src/site/content/tutorial/_TEMPLATE_.wsdl (original)
+++ incubator/muse/trunk/src/site/content/tutorial/_TEMPLATE_.wsdl Tue May 31 13:34:59 2005
@@ -38,7 +38,7 @@
               xmlns:muws-p2-xs="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd">
 
          <xsd:import namespace="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-BaseFaults-1.2-draft-01.xsd"
-                     schemaLocation="../spec/wsrf/WS-BaseFaults-1_2.xsd"/>
+                     schemaLocation="../spec/wsrf/WS-BaseFaults-1_2-Draft_01.xsd"/>
 
          <xsd:import namespace="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceLifetime-1.2-draft-01.xsd"
                      schemaLocation="../spec/wsrf/WS-ResourceLifetime-1_2.xsd"/>



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