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 ip...@apache.org on 2005/06/21 01:28:44 UTC

svn commit: r191585 [3/30] - in /incubator/muse/site: ./ dev_guide/ example/ example/epr/ example/images/ example/lib/ example/logic/ example/logic/src/ example/logic/src/java/ example/logic/src/java/org/ example/logic/src/java/org/apache/ example/logi...

Added: incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/businessprocesstype/callback/TotalNumberOfTerminatedProcessesCallback.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/businessprocesstype/callback/TotalNumberOfTerminatedProcessesCallback.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/businessprocesstype/callback/TotalNumberOfTerminatedProcessesCallback.java (added)
+++ incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/businessprocesstype/callback/TotalNumberOfTerminatedProcessesCallback.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,65 @@
+/*=============================================================================*
+ *  Copyright 2005 The Apache Software Foundation
+ *
+ *  Licensed 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.apache.ws.muse.example.businessprocesstype.callback;
+
+import org.apache.ws.muse.example.businessprocesstype.backend.BusinessProcessInstance;
+import org.apache.ws.namespaces.muse.muwsExt1.impl.LongMetricImpl;
+import org.apache.ws.resource.properties.ResourceProperty;
+import org.apache.ws.resource.properties.ResourcePropertyCallback;
+import java.util.Calendar;
+
+/**
+ * @author Kinga Dziembowski
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public class TotalNumberOfTerminatedProcessesCallback
+   implements ResourcePropertyCallback
+{
+   /** DOCUMENT_ME */
+   BusinessProcessInstance m_instance;
+
+   /**
+    * Creates a new {@link TotalNumberOfTerminatedProcessesCallback} object.
+    *
+    * @param instance DOCUMENT_ME
+    */
+   public TotalNumberOfTerminatedProcessesCallback( BusinessProcessInstance instance )
+   {
+      m_instance = instance;
+   }
+
+   /* (non-Javadoc)
+    * @see org.apache.ws.resource.properties.ResourcePropertyCallback#refreshProperty(org.apache.ws.resource.properties.ResourceProperty)
+    */
+   public ResourceProperty refreshProperty( ResourceProperty prop )
+   {
+      try
+      {
+         LongMetricImpl metric       = (LongMetricImpl) prop.get( 0 );
+         Calendar       calendarInst = Calendar.getInstance(  );
+         metric.setLastUpdated( calendarInst );
+         metric.setLongValue( m_instance.getTotalNumberOfTerminatedProcesses(  ) );
+      }
+      catch ( Exception re )
+      {
+         re.printStackTrace(  );
+      }
+
+      return prop;
+   }
+}
\ No newline at end of file

Added: incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/backend/HostInstance.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/backend/HostInstance.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/backend/HostInstance.java (added)
+++ incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/backend/HostInstance.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,114 @@
+/*=============================================================================*
+ *  Copyright 2005 The Apache Software Foundation
+ *
+ *  Licensed 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.apache.ws.muse.example.host.backend;
+
+import java.util.Properties;
+import java.util.Random;
+
+/**
+ * @author Kinga Dziembowski
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public class HostInstance
+{
+   private String m_Id;
+   private Random m_random = new Random(  );
+
+   /**
+    * Creates a new {@link HostInstance} object.
+    *
+    * @param id DOCUMENT_ME
+    */
+   public HostInstance( String id )
+   {
+      m_Id = id;
+   }
+
+   /**
+    * DOCUMENT_ME
+    *
+    * @return DOCUMENT_ME
+    */
+   public long getAvailablememory(  )
+   {
+      Properties prop = System.getProperties(  );
+
+      Runtime    aRun    = Runtime.getRuntime(  );
+      long       freeMem = aRun.freeMemory(  );
+      return freeMem;
+   }
+
+   /**
+    * DOCUMENT_ME
+    *
+    * @return DOCUMENT_ME
+    */
+   public int getCPUUsage(  )
+   {
+      // simulate the CPU usage - the value between 0-100 (%)
+      int cpuUsage = m_random.nextInt( 101 );
+      return cpuUsage;
+   }
+
+   /**
+    * DOCUMENT_ME
+    *
+    * @return DOCUMENT_ME
+    */
+   public String getHostName(  )
+   {
+      String name = null;
+      try
+      {
+         java.net.InetAddress localMachine = java.net.InetAddress.getLocalHost(  );
+         name = localMachine.getHostName(  );
+      }
+      catch ( java.net.UnknownHostException uhe )
+      {
+         System.out.println( "Error getting HostName" );
+      }
+
+      return name;
+   }
+
+   /**
+    * DOCUMENT_ME
+    *
+    * @return DOCUMENT_ME
+    */
+   public int getNumberOfprocesses(  )
+   {
+      return 5;
+   }
+
+   /**
+    * DOCUMENT_ME
+    *
+    * @param args DOCUMENT_ME
+    */
+   public static void main( String[] args )
+   {
+      HostInstance aHost    = new HostInstance( "33" );
+      long         memory   = aHost.getAvailablememory(  );
+      String       name     = aHost.getHostName(  );
+      int          cpuusage = aHost.getCPUUsage(  );
+      cpuusage    = aHost.getCPUUsage(  );
+      cpuusage    = aHost.getCPUUsage(  );
+      cpuusage    = aHost.getCPUUsage(  );
+   }
+}
\ No newline at end of file

Added: incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/AvailableMemoryCallback.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/AvailableMemoryCallback.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/AvailableMemoryCallback.java (added)
+++ incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/AvailableMemoryCallback.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,65 @@
+/*=============================================================================*
+ *  Copyright 2005 The Apache Software Foundation
+ *
+ *  Licensed 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.apache.ws.muse.example.host.callback;
+
+import org.apache.ws.muse.example.host.backend.HostInstance;
+import org.apache.ws.namespaces.muse.muwsExt1.impl.LongMetricImpl;
+import org.apache.ws.resource.properties.ResourceProperty;
+import org.apache.ws.resource.properties.ResourcePropertyCallback;
+import java.util.Calendar;
+
+/**
+ * @author Kinga Dziembowski
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public class AvailableMemoryCallback
+   implements ResourcePropertyCallback
+{
+   /** DOCUMENT_ME */
+   HostInstance m_instance;
+
+   /**
+    * Creates a new {@link AvailableMemoryCallback} object.
+    *
+    * @param host DOCUMENT_ME
+    */
+   public AvailableMemoryCallback( HostInstance host )
+   {
+      m_instance = host;
+   }
+
+   /* (non-Javadoc)
+    * @see org.apache.ws.resource.properties.ResourcePropertyCallback#refreshProperty(org.apache.ws.resource.properties.ResourceProperty)
+    */
+   public ResourceProperty refreshProperty( ResourceProperty prop )
+   {
+      try
+      {
+         LongMetricImpl metric       = (LongMetricImpl) prop.get( 0 );
+         Calendar       calendarInst = Calendar.getInstance(  );
+         metric.setLastUpdated( calendarInst );
+         metric.setLongValue( m_instance.getAvailablememory(  ) );
+      }
+      catch ( Exception re )
+      {
+         re.printStackTrace(  );
+      }
+
+      return prop;
+   }
+}
\ No newline at end of file

Added: incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/CpuUsageCallback.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/CpuUsageCallback.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/CpuUsageCallback.java (added)
+++ incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/CpuUsageCallback.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,65 @@
+/*=============================================================================*
+ *  Copyright 2005 The Apache Software Foundation
+ *
+ *  Licensed 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.apache.ws.muse.example.host.callback;
+
+import org.apache.ws.muse.example.host.backend.HostInstance;
+import org.apache.ws.namespaces.muse.muwsExt1.impl.IntMetricImpl;
+import org.apache.ws.resource.properties.ResourceProperty;
+import org.apache.ws.resource.properties.ResourcePropertyCallback;
+import java.util.Calendar;
+
+/**
+ * @author Kinga Dziembowski
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public class CpuUsageCallback
+   implements ResourcePropertyCallback
+{
+   /** DOCUMENT_ME */
+   HostInstance m_instance;
+
+   /**
+    * Creates a new {@link CpuUsageCallback} object.
+    *
+    * @param host DOCUMENT_ME
+    */
+   public CpuUsageCallback( HostInstance host )
+   {
+      m_instance = host;
+   }
+
+   /* (non-Javadoc)
+    * @see org.apache.ws.resource.properties.ResourcePropertyCallback#refreshProperty(org.apache.ws.resource.properties.ResourceProperty)
+    */
+   public ResourceProperty refreshProperty( ResourceProperty prop )
+   {
+      try
+      {
+         IntMetricImpl metric       = (IntMetricImpl) prop.get( 0 );
+         Calendar      calendarInst = Calendar.getInstance(  );
+         metric.setLastUpdated( calendarInst );
+         metric.setIntValue( m_instance.getCPUUsage(  ) );
+      }
+      catch ( Exception re )
+      {
+         re.printStackTrace(  );
+      }
+
+      return prop;
+   }
+}
\ No newline at end of file

Added: incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/HostNameCallback.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/HostNameCallback.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/HostNameCallback.java (added)
+++ incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/HostNameCallback.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,62 @@
+/*=============================================================================*
+ *  Copyright 2005 The Apache Software Foundation
+ *
+ *  Licensed 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.apache.ws.muse.example.host.callback;
+
+import org.apache.ws.muse.example.host.backend.HostInstance;
+import org.apache.ws.resource.properties.ResourceProperty;
+import org.apache.ws.resource.properties.ResourcePropertyCallback;
+import org.apache.xmlbeans.XmlString;
+
+/**
+ * @author Kinga Dziembowski
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public class HostNameCallback
+   implements ResourcePropertyCallback
+{
+   /** DOCUMENT_ME */
+   HostInstance m_instance;
+
+   /**
+    * Creates a new {@link HostNameCallback} object.
+    *
+    * @param host DOCUMENT_ME
+    */
+   public HostNameCallback( HostInstance host )
+   {
+      m_instance = host;
+   }
+
+   /* (non-Javadoc)
+    * @see org.apache.ws.resource.properties.ResourcePropertyCallback#refreshProperty(org.apache.ws.resource.properties.ResourceProperty)
+    */
+   public ResourceProperty refreshProperty( ResourceProperty prop )
+   {
+      try
+      {
+         XmlString metric = (XmlString) prop.get( 0 );
+         metric.setStringValue( m_instance.getHostName(  ) );
+      }
+      catch ( Exception re )
+      {
+         re.printStackTrace(  );
+      }
+
+      return prop;
+   }
+}
\ No newline at end of file

Added: incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/NumProcessesCallback.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/NumProcessesCallback.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/NumProcessesCallback.java (added)
+++ incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/host/callback/NumProcessesCallback.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,65 @@
+/*=============================================================================*
+ *  Copyright 2005 The Apache Software Foundation
+ *
+ *  Licensed 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.apache.ws.muse.example.host.callback;
+
+import org.apache.ws.muse.example.host.backend.HostInstance;
+import org.apache.ws.namespaces.muse.muwsExt1.impl.IntMetricImpl;
+import org.apache.ws.resource.properties.ResourceProperty;
+import org.apache.ws.resource.properties.ResourcePropertyCallback;
+import java.util.Calendar;
+
+/**
+ * @author Kinga Dziembowski
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public class NumProcessesCallback
+   implements ResourcePropertyCallback
+{
+   /** DOCUMENT_ME */
+   HostInstance m_instance;
+
+   /**
+    * Creates a new {@link NumProcessesCallback} object.
+    *
+    * @param host DOCUMENT_ME
+    */
+   public NumProcessesCallback( HostInstance host )
+   {
+      m_instance = host;
+   }
+
+   /* (non-Javadoc)
+    * @see org.apache.ws.resource.properties.ResourcePropertyCallback#refreshProperty(org.apache.ws.resource.properties.ResourceProperty)
+    */
+   public ResourceProperty refreshProperty( ResourceProperty prop )
+   {
+      try
+      {
+         IntMetricImpl metric       = (IntMetricImpl) prop.get( 0 );
+         Calendar      calendarInst = Calendar.getInstance(  );
+         metric.setLastUpdated( calendarInst );
+         metric.setIntValue( m_instance.getCPUUsage(  ) );
+      }
+      catch ( Exception re )
+      {
+         re.printStackTrace(  );
+      }
+
+      return prop;
+   }
+}
\ No newline at end of file

Added: incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/utils/EndPointReferenceFactory.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/utils/EndPointReferenceFactory.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/utils/EndPointReferenceFactory.java (added)
+++ incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/utils/EndPointReferenceFactory.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,62 @@
+/*=============================================================================*
+ *  Copyright 2005 The Apache Software Foundation
+ *
+ *  Licensed 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.apache.ws.muse.example.utils;
+
+import org.apache.ws.resource.ResourceKey;
+import org.apache.ws.util.XmlBeanUtils;
+import org.apache.xmlbeans.XmlObject;
+import org.xmlsoap.schemas.ws.x2004.x08.addressing.AttributedURI;
+import org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceDocument;
+import org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType;
+import org.xmlsoap.schemas.ws.x2004.x08.addressing.ReferencePropertiesType;
+
+/**
+ * @author Kinga Dziembowski
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public class EndPointReferenceFactory
+{
+   /**
+    * DOCUMENT_ME
+    *
+    * @param key DOCUMENT_ME
+    * @param serviceUrl DOCUMENT_ME
+    * @param serviceName DOCUMENT_ME
+    *
+    * @return DOCUMENT_ME
+    */
+   public static EndpointReferenceType createEpr( ResourceKey key,
+                                                  String      serviceUrl,
+                                                  String      serviceName )
+   {
+      EndpointReferenceDocument eprD    = EndpointReferenceDocument.Factory.newInstance(  );
+      EndpointReferenceType     eprT    = eprD.addNewEndpointReference(  );
+      AttributedURI             address = eprT.addNewAddress(  );
+      address.setStringValue( serviceUrl + "/" + serviceName );
+      ReferencePropertiesType refPropType = eprT.addNewReferenceProperties(  );
+      if ( key != null )
+      {
+         XmlObject xmlObj = XmlBeanUtils.addChildElement( refPropType,
+                                                          key.getName(  ) );
+         XmlBeanUtils.setValue( xmlObj,
+                                key.getValue(  ).toString(  ) );
+      }
+
+      return eprT;
+   }
+}
\ No newline at end of file

Added: incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/utils/ResourceKeyFactory.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/utils/ResourceKeyFactory.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/utils/ResourceKeyFactory.java (added)
+++ incubator/muse/site/example/logic/src/java/org/apache/ws/muse/example/utils/ResourceKeyFactory.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,43 @@
+/*=============================================================================*
+ *  Copyright 2005 The Apache Software Foundation
+ *
+ *  Licensed 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.apache.ws.muse.example.utils;
+
+import org.apache.ws.resource.impl.SimpleTypeResourceKey;
+import javax.xml.namespace.QName;
+
+/**
+ * @author Kinga Dziembowski
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public class ResourceKeyFactory
+{
+   /**
+    * DOCUMENT_ME
+    *
+    * @param name DOCUMENT_ME
+    * @param id DOCUMENT_ME
+    *
+    * @return DOCUMENT_ME
+    */
+   public static SimpleTypeResourceKey createKey( QName  name,
+                                                  Object id )
+   {
+      SimpleTypeResourceKey aKey = new SimpleTypeResourceKey( name, id );
+      return aKey;
+   }
+}
\ No newline at end of file

Added: incubator/muse/site/example/requests/CreateBusinessProcess.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/CreateBusinessProcess.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/CreateBusinessProcess.xml (added)
+++ incubator/muse/site/example/requests/CreateBusinessProcess.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,16 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+      <wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/properties/Create</wsa:Action>
+</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:Create xmlns:m="http://ws.apache.org/muse/example/resourceadmin/properties" xmlns:b="http://ws.apache.org/namespaces/muse/muws-ext-1.xsd">
+			<m:CreateParams>
+			<b:ResourceType>BusinessProcess</b:ResourceType>
+			</m:CreateParams>
+
+		</m:Create>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
+

Added: incubator/muse/site/example/requests/CreateEnterpriseApplication.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/CreateEnterpriseApplication.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/CreateEnterpriseApplication.xml (added)
+++ incubator/muse/site/example/requests/CreateEnterpriseApplication.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,15 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+      <wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/properties/Create</wsa:Action>
+</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:Create xmlns:m="http://ws.apache.org/muse/example/resourceadmin/properties" xmlns:b="http://ws.apache.org/namespaces/muse/muws-ext-1.xsd">
+			<m:CreateParams>
+			<b:ResourceType>EnterpriseApplication</b:ResourceType>
+			</m:CreateParams>
+
+		</m:Create>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/CreateHost.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/CreateHost.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/CreateHost.xml (added)
+++ incubator/muse/site/example/requests/CreateHost.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,15 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+      <wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/properties/Create</wsa:Action>
+</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:Create xmlns:m="http://ws.apache.org/muse/example/resourceadmin/properties" xmlns:b="http://ws.apache.org/namespaces/muse/muws-ext-1.xsd">
+			<m:CreateParams>
+			<b:ResourceType>HostMachine</b:ResourceType>
+			</m:CreateParams>
+
+		</m:Create>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/CreateIntegrationServer.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/CreateIntegrationServer.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/CreateIntegrationServer.xml (added)
+++ incubator/muse/site/example/requests/CreateIntegrationServer.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,16 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+      <wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/properties/Create</wsa:Action>
+</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:Create xmlns:m="http://ws.apache.org/muse/example/resourceadmin/properties" xmlns:b="http://ws.apache.org/namespaces/muse/muws-ext-1.xsd">
+			<m:CreateParams>
+			<b:ResourceType>IntegrationServer</b:ResourceType>
+			</m:CreateParams>
+
+		</m:Create>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
+

Added: incubator/muse/site/example/requests/DestroyResourceHost_ResourceaAdmin.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/DestroyResourceHost_ResourceaAdmin.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/DestroyResourceHost_ResourceaAdmin.xml (added)
+++ incubator/muse/site/example/requests/DestroyResourceHost_ResourceaAdmin.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,22 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:m0="http://ws.apache.org/namespaces/muse/muws-ext-1.xsd" xmlns:m1="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+      <wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/properties/DestroyResource</wsa:Action>
+</SOAP-ENV:Header>
+
+	<SOAP-ENV:Body>
+		<m:DestroyResource xmlns:m="http://ws.apache.org/muse/example/resourceadmin/properties">
+			<m:DestroyResourceParams>
+				<m0:ResourceType>HostMachine</m0:ResourceType>
+				<m1:EndpointReference xmlns:m1="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+					<m1:Address>http://localhost:8080/muse/services/host</m1:Address>
+					<m1:ReferenceProperties>
+						<host:ResourceID xmlns:host="http://ws.apache.org/muse/example/host">{http://ws.apache.org/muse/example/host}host1</host:ResourceID>
+					</m1:ReferenceProperties>
+					<m1:PortType xmlns:host="http://ws.apache.org/muse/example/host">host:HostPortType</m1:PortType>
+					<m1:ServiceName PortName="host"/>
+				</m1:EndpointReference>
+			</m:DestroyResourceParams>
+		</m:DestroyResource>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/GetCumulativeTime_Application.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetCumulativeTime_Application.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetCumulativeTime_Application.xml (added)
+++ incubator/muse/site/example/requests/GetCumulativeTime_Application.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,10 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/application</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/application/GetResourcePropertyRequest</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/application">{http://ws.apache.org/muse/example/application}application1</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd" xmlns:q="http://ws.apache.org/muse/example/shared">q:CumulativeExecutionTime</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/GetCurrentMessageForTopic_IntegrationServer.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetCurrentMessageForTopic_IntegrationServer.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetCurrentMessageForTopic_IntegrationServer.xml (added)
+++ incubator/muse/site/example/requests/GetCurrentMessageForTopic_IntegrationServer.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,12 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/integrationserver</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/integrationserver/GetResourcePropertyRequest</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/integrationserver">{http://ws.apache.org/muse/example/integrationserver}integrationserver</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetCurrentMessage xmlns:m="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd">
+			<wsn:Topic xmlns:wsdm="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2-events.xml" xmlns:wsn="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd" Dialect="http://docs.oasis-open.org/wsn/2004/06/TopicExpression/Concrete">wsdm:RelationshipsCapability/RelationshipCreated</wsn:Topic>
+		</m:GetCurrentMessage>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/GetPropertyDiscovery_ResourceAdmin.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetPropertyDiscovery_ResourceAdmin.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetPropertyDiscovery_ResourceAdmin.xml (added)
+++ incubator/muse/site/example/requests/GetPropertyDiscovery_ResourceAdmin.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,9 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/GetResourcePropertyRequest</wsa:Action>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd" xmlns:q="http://ws.apache.org/muse/example/resourceadmin/properties">q:Discovery</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
\ No newline at end of file

Added: incubator/muse/site/example/requests/GetPropertyManagebilityCapability_ResourceAdmin.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetPropertyManagebilityCapability_ResourceAdmin.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetPropertyManagebilityCapability_ResourceAdmin.xml (added)
+++ incubator/muse/site/example/requests/GetPropertyManagebilityCapability_ResourceAdmin.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,9 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/GetResourcePropertyRequest</wsa:Action>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd" xmlns:q="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd">q:ManageabilityCapability</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
\ No newline at end of file

Added: incubator/muse/site/example/requests/GetPropertyManagementCapability_Application.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetPropertyManagementCapability_Application.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetPropertyManagementCapability_Application.xml (added)
+++ incubator/muse/site/example/requests/GetPropertyManagementCapability_Application.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,11 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/application</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/GetResourcePropertyRequest</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/application">{http://ws.apache.org/muse/example/application}application1</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd" xmlns:q="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd">q:ManageabilityCapability</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
+

Added: incubator/muse/site/example/requests/GetPropertyManagementCapability_Host.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetPropertyManagementCapability_Host.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetPropertyManagementCapability_Host.xml (added)
+++ incubator/muse/site/example/requests/GetPropertyManagementCapability_Host.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,10 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/host</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/GetResourcePropertyRequest</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/host">{http://ws.apache.org/muse/example/host}host1</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd" xmlns:q="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd">q:ManageabilityCapability</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/GetPropertyNumOfRunProc_BP.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetPropertyNumOfRunProc_BP.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetPropertyNumOfRunProc_BP.xml (added)
+++ incubator/muse/site/example/requests/GetPropertyNumOfRunProc_BP.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,10 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/businessprocesstype</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/businessprocesstype/GetResourcePropertyRequest</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/businessprocesstype">{http://ws.apache.org/muse/example/businessprocesstype}businessprocesstype1</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd" xmlns:q="http://ws.apache.org/muse/example/businessprocesstype/properties">q:NumberOfRunningProcesses</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/GetPropertySupportedTypes_ResourceAdmin.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetPropertySupportedTypes_ResourceAdmin.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetPropertySupportedTypes_ResourceAdmin.xml (added)
+++ incubator/muse/site/example/requests/GetPropertySupportedTypes_ResourceAdmin.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,9 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/GetResourcePropertyRequest</wsa:Action>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd" xmlns:q="http://ws.apache.org/muse/example/resourceadmin/properties">q:SupportedResources</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/GetPropertyTopic_Application.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetPropertyTopic_Application.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetPropertyTopic_Application.xml (added)
+++ incubator/muse/site/example/requests/GetPropertyTopic_Application.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,11 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/application</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/application/GetResourcePropertyRequest</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/application">{http://ws.apache.org/muse/example/application}application1</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd" xmlns:q="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd">q:Topic</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
+

Added: incubator/muse/site/example/requests/GetPropertyTopic_Host.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetPropertyTopic_Host.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetPropertyTopic_Host.xml (added)
+++ incubator/muse/site/example/requests/GetPropertyTopic_Host.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,11 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/host</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/host/GetResourcePropertyRequest</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/host">{http://ws.apache.org/muse/example/host}host1</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd" xmlns:q="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd">q:Topic</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
+

Added: incubator/muse/site/example/requests/GetPropertyTopic_IntegrationServer.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetPropertyTopic_IntegrationServer.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetPropertyTopic_IntegrationServer.xml (added)
+++ incubator/muse/site/example/requests/GetPropertyTopic_IntegrationServer.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,11 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/integrationserver</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/integrationserver/GetResourcePropertyRequest</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/integrationserver">{http://ws.apache.org/muse/example/integrationserver}integrationserver</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd" xmlns:q="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd">q:Topic</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
+

Added: incubator/muse/site/example/requests/GetPropertyTopic_ResourceAdmin.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetPropertyTopic_ResourceAdmin.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetPropertyTopic_ResourceAdmin.xml (added)
+++ incubator/muse/site/example/requests/GetPropertyTopic_ResourceAdmin.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,9 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/GetResourcePropertyRequest</wsa:Action>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd" xmlns:q="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd">q:Topic</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/GetRelationshipProperty_IntegrationServer.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/GetRelationshipProperty_IntegrationServer.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/GetRelationshipProperty_IntegrationServer.xml (added)
+++ incubator/muse/site/example/requests/GetRelationshipProperty_IntegrationServer.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,10 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">
+		<wsa:To mustUnderstand="1">http://desk-kinga2.americas.hpqcorp.net:8080/muse/services/integrationserver</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/integrationserver/GetResourcePropertyRequest</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/integrationserver">{http://ws.apache.org/muse/example/integrationserver}integrationserver</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:GetResourceProperty xmlns:m="http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd"  xmlns:q="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd" >q:Relationship</m:GetResourceProperty>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/RemoveRelationship_IntegrationServerToBP.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/RemoveRelationship_IntegrationServerToBP.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/RemoveRelationship_IntegrationServerToBP.xml (added)
+++ incubator/muse/site/example/requests/RemoveRelationship_IntegrationServerToBP.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,39 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:m0="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd" xmlns:m1="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd" xmlns:m2="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+      <wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/properties/RemoveRelationship</wsa:Action>
+</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:RemoveRelationship xmlns:m="http://ws.apache.org/muse/example/resourceadmin/properties">
+			<wsdm:Relationship xmlns:wsdm="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd">
+				<wsdm:Type>
+					<R:Contains xmlns:R="org.apache.ws.muse.example">
+						<R:Contains/>
+					</R:Contains>
+				</wsdm:Type>
+				<wsdm:Participant>
+					<m1:ManageabilityEndpointReference xmlns:m1="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd">
+						<m2:Address xmlns:m2="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://localhost:8080/muse/services/integrationserver</m2:Address>
+						<m2:ReferenceProperties xmlns:m2="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+							<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/integrationserver">{http://ws.apache.org/muse/example/integrationserver}integrationserver</int:ResourceID>
+						</m2:ReferenceProperties>
+					</m1:ManageabilityEndpointReference>
+					<m1:ResourceId xmlns:m1="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd"/>
+					<wsdm:Role>urn:parent</wsdm:Role>
+				</wsdm:Participant>
+				<wsdm:Participant>
+					<m1:ManageabilityEndpointReference xmlns:m1="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd">
+						<m2:Address xmlns:m2="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://localhost:8080/muse/services/businessprocesstype
+						</m2:Address>
+						<m2:ReferenceProperties xmlns:m2="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+							<bus:ResourceID xmlns:bus="http://ws.apache.org/muse/example/businessprocesstype">{http://ws.apache.org/muse/example/businessprocesstype}businessprocesstype1</bus:ResourceID>
+						</m2:ReferenceProperties>
+						<m2:ReferenceParameters xmlns:m2="http://schemas.xmlsoap.org/ws/2004/08/addressing"/>
+					</m1:ManageabilityEndpointReference>
+					<m1:ResourceId xmlns:m1="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd"/>
+					<wsdm:Role>urn:child</wsdm:Role>
+				</wsdm:Participant>
+			</wsdm:Relationship>
+		</m:RemoveRelationship>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/Resume_BP.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/Resume_BP.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/Resume_BP.xml (added)
+++ incubator/muse/site/example/requests/Resume_BP.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,10 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/businessprocesstype</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/businessprocesstype/GetResourcePropertyRequest</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/businessprocesstype">{http://ws.apache.org/muse/example/businessprocesstype}businessprocesstype1</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:Resume xmlns:m="http://ws.apache.org/muse/example/businessprocesstype/properties">9</m:Resume>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/SetRelationship_IntegrationServerToBP.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/SetRelationship_IntegrationServerToBP.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/SetRelationship_IntegrationServerToBP.xml (added)
+++ incubator/muse/site/example/requests/SetRelationship_IntegrationServerToBP.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,41 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:m0="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd" xmlns:m1="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd" xmlns:m2="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+      <wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+      <wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/properties/SetRelationship</wsa:Action>
+</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:SetRelationship xmlns:m="http://ws.apache.org/muse/example/resourceadmin/properties">
+			<m:RelationshipFrom>
+				<m0:Participant>
+					<m1:ManageabilityEndpointReference>
+						<m2:Address>http://localhost:8080/muse/services/integrationserver</m2:Address>
+						<m2:ReferenceProperties>
+						<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/integrationserver">{http://ws.apache.org/muse/example/integrationserver}integrationserver</int:ResourceID>
+						</m2:ReferenceProperties>
+					</m1:ManageabilityEndpointReference>
+					<wsdm:ResourceId xmlns:wsdm="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd">{http://ws.apache.org/muse/example/integrationserver}integrationserver</wsdm:ResourceId>
+					<m0:Role>urn:parent</m0:Role>
+				</m0:Participant>
+			</m:RelationshipFrom>
+			<m0:Type>
+				<R:Contains xmlns:R="org.apache.ws.muse.example">
+                     <R:Contains xmlns:R="org.apache.ws.muse.example"/>
+                 </R:Contains>
+			</m0:Type>
+			<m:RelationshipTo>
+				<m0:Participant>
+					<m1:ManageabilityEndpointReference>
+						<m2:Address>http://localhost:8080/muse/services/businessprocesstype
+						</m2:Address>
+						<m2:ReferenceProperties>
+						<bus:ResourceID xmlns:bus="http://ws.apache.org/muse/example/businessprocesstype">{http://ws.apache.org/muse/example/businessprocesstype}businessprocesstype1</bus:ResourceID>
+						</m2:ReferenceProperties>
+						<m2:ReferenceParameters/>
+					</m1:ManageabilityEndpointReference>
+					<wsdm:ResourceId xmlns:wsdm="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd">{http://ws.apache.org/muse/example/businessprocesstype}businessprocesstype1</wsdm:ResourceId>
+					<m0:Role>urn:child</m0:Role>
+				</m0:Participant>
+			</m:RelationshipTo>
+		</m:SetRelationship>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/StartOperationalEvents_Application.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/StartOperationalEvents_Application.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/StartOperationalEvents_Application.xml (added)
+++ incubator/muse/site/example/requests/StartOperationalEvents_Application.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,13 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/application</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/application/StartEvents</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/application">{http://ws.apache.org/muse/example/application}application1</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:StartEvents xmlns:m="http://ws.apache.org/muse/example/application/properties">
+			<m:Delay>1</m:Delay>
+			<m:Frequency>30</m:Frequency>
+		</m:StartEvents>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/StopOperationalEvents_Application.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/StopOperationalEvents_Application.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/StopOperationalEvents_Application.xml (added)
+++ incubator/muse/site/example/requests/StopOperationalEvents_Application.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,10 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/application</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/application/Subscribe</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/application">{http://ws.apache.org/muse/example/application}application1</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:StopEvents xmlns:m="http://ws.apache.org/muse/example/application/properties"/>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/SubscribeToCreateRelationship_IntegrationServer.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/SubscribeToCreateRelationship_IntegrationServer.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/SubscribeToCreateRelationship_IntegrationServer.xml (added)
+++ incubator/muse/site/example/requests/SubscribeToCreateRelationship_IntegrationServer.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,18 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:m0="http://schemas.xmlsoap.org/ws/2003/03/addressing">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/integrationserver</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/integrationserver/Subscribe</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/integrationserver">{http://ws.apache.org/muse/example/integrationserver}integrationserver</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:Subscribe xmlns:m="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd">
+			<m:ConsumerReference>
+				<m0:Address>file:///C:/demo				
+				</m0:Address>
+				<m0:ReferenceProperties/>
+			</m:ConsumerReference>
+			<wsn:TopicExpression xmlns:wsdm="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2-events.xml" xmlns:wsn="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd" Dialect="http://docs.oasis-open.org/wsn/2004/06/TopicExpression/Concrete">wsdm:RelationshipsCapability/RelationshipCreated</wsn:TopicExpression>
+			<m:UseNotify>true</m:UseNotify>
+		</m:Subscribe>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/SubscribeToDestroyRelationship_IntegrationServer.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/SubscribeToDestroyRelationship_IntegrationServer.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/SubscribeToDestroyRelationship_IntegrationServer.xml (added)
+++ incubator/muse/site/example/requests/SubscribeToDestroyRelationship_IntegrationServer.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,20 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:m0="http://schemas.xmlsoap.org/ws/2003/03/addressing">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/integrationserver</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/integrationserver/Subscribe</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/integrationserver">{http://ws.apache.org/muse/example/integrationserver}integrationserver</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:Subscribe xmlns:m="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd">
+			<m:ConsumerReference>
+				<m0:Address>file:///C:/demo				
+				</m0:Address>
+				<m0:ReferenceProperties/>
+			</m:ConsumerReference>
+			<wsn:TopicExpression xmlns:wsdm="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2-events.xml" xmlns:wsn="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd" Dialect="http://docs.oasis-open.org/wsn/2004/06/TopicExpression/Concrete">wsdm:RelationshipsCapability/RelationshipDeleted</wsn:TopicExpression>
+			<m:UseNotify>true</m:UseNotify>
+		</m:Subscribe>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
+
+

Added: incubator/muse/site/example/requests/SubscribeToDestroyResource_ResourceAdmin.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/SubscribeToDestroyResource_ResourceAdmin.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/SubscribeToDestroyResource_ResourceAdmin.xml (added)
+++ incubator/muse/site/example/requests/SubscribeToDestroyResource_ResourceAdmin.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,17 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:m0="http://schemas.xmlsoap.org/ws/2003/03/addressing">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/Subscribe</wsa:Action>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:Subscribe xmlns:m="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd">
+			<m:ConsumerReference>
+				<m0:Address>file:///C:/demo/destroy.xml				
+				</m0:Address>
+				<m0:ReferenceProperties/>
+			</m:ConsumerReference>
+			<wsn:TopicExpression xmlns:wsdm="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2-events.xml" xmlns:wsn="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd" Dialect="http://docs.oasis-open.org/wsn/2004/06/TopicExpression/Concrete">wsdm:ManageabilityEndpointDestruction/ManageableResourceDestruction</wsn:TopicExpression>
+			<m:UseNotify>true</m:UseNotify>
+		</m:Subscribe>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/SubscribeToOperationalEvent_Application.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/SubscribeToOperationalEvent_Application.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/SubscribeToOperationalEvent_Application.xml (added)
+++ incubator/muse/site/example/requests/SubscribeToOperationalEvent_Application.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,18 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:m0="http://schemas.xmlsoap.org/ws/2003/03/addressing">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/application</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/application/Subscribe</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/application">{http://ws.apache.org/muse/example/application}application1</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:Subscribe xmlns:m="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd">
+			<m:ConsumerReference>
+				<m0:Address>file:///demo/operational.txt				
+				</m0:Address>
+				<m0:ReferenceProperties/>
+			</m:ConsumerReference>
+			<wsn:TopicExpression xmlns:wsdm="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2-events.xml" xmlns:wsn="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd" Dialect="http://docs.oasis-open.org/wsn/2004/06/TopicExpression/Simple">wsdm:OperationalStatusCapability</wsn:TopicExpression>
+			<m:UseNotify>true</m:UseNotify>
+		</m:Subscribe>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>

Added: incubator/muse/site/example/requests/SubscribetoCreateResource_ResourceAdmin.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/SubscribetoCreateResource_ResourceAdmin.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/SubscribetoCreateResource_ResourceAdmin.xml (added)
+++ incubator/muse/site/example/requests/SubscribetoCreateResource_ResourceAdmin.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,17 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:m0="http://schemas.xmlsoap.org/ws/2003/03/addressing">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/resourceadmin</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/resourceadmin/Subscribe</wsa:Action>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:Subscribe xmlns:m="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd">
+			<m:ConsumerReference>
+				<m0:Address>file:///demo/create/create.xml				
+				</m0:Address>
+				<m0:ReferenceProperties/>
+			</m:ConsumerReference>
+			<wsn:TopicExpression xmlns:wsdm="http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2-events.xml" xmlns:wsn="http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd" Dialect="http://docs.oasis-open.org/wsn/2004/06/TopicExpression/Concrete">wsdm:ManageabilityEndpointCreation/ManageableResourceCreation</wsn:TopicExpression>
+			<m:UseNotify>true</m:UseNotify>
+		</m:Subscribe>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
\ No newline at end of file

Added: incubator/muse/site/example/requests/Suspend_BP.xml
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/requests/Suspend_BP.xml?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/requests/Suspend_BP.xml (added)
+++ incubator/muse/site/example/requests/Suspend_BP.xml Mon Jun 20 16:28:31 2005
@@ -0,0 +1,10 @@
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<SOAP-ENV:Header xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">
+		<wsa:To mustUnderstand="1">http://localhost:8080/muse/services/businessprocesstype</wsa:To>
+		<wsa:Action mustUnderstand="1">http://ws.apache.org/muse/example/businessprocesstype/GetResourcePropertyRequest</wsa:Action>
+		<int:ResourceID xmlns:int="http://ws.apache.org/muse/example/businessprocesstype">{http://ws.apache.org/muse/example/businessprocesstype}businessprocesstype1</int:ResourceID>
+	</SOAP-ENV:Header>
+	<SOAP-ENV:Body>
+		<m:Suspend xmlns:m="http://ws.apache.org/muse/example/businessprocesstype/properties">9</m:Suspend>
+	</SOAP-ENV:Body>
+</SOAP-ENV:Envelope>
\ No newline at end of file

Added: incubator/muse/site/example/services/.xmlbeans/lib/application-xbeans.jar
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/lib/application-xbeans.jar?rev=191585&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/muse/site/example/services/.xmlbeans/lib/application-xbeans.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/muse/site/example/services/.xmlbeans/lib/businessprocesstype-xbeans.jar
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/lib/businessprocesstype-xbeans.jar?rev=191585&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/muse/site/example/services/.xmlbeans/lib/businessprocesstype-xbeans.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/muse/site/example/services/.xmlbeans/lib/host-xbeans.jar
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/lib/host-xbeans.jar?rev=191585&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/muse/site/example/services/.xmlbeans/lib/host-xbeans.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/muse/site/example/services/.xmlbeans/lib/integrationserver-xbeans.jar
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/lib/integrationserver-xbeans.jar?rev=191585&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/muse/site/example/services/.xmlbeans/lib/integrationserver-xbeans.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/muse/site/example/services/.xmlbeans/lib/resourceadmin-xbeans.jar
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/lib/resourceadmin-xbeans.jar?rev=191585&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/muse/site/example/services/.xmlbeans/lib/resourceadmin-xbeans.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream



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