You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by va...@apache.org on 2010/05/27 20:10:26 UTC

svn commit: r948937 [7/33] - in /ode/trunk: ./ agents/src/main/java/org/apache/ode/agents/memory/ axis2-war/ axis2-war/src/main/assembly/ axis2-war/src/main/webapp/ axis2-war/src/main/webapp/WEB-INF/ axis2-war/src/main/webapp/WEB-INF/classes/ axis2-war...

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java Thu May 27 18:09:53 2010
@@ -93,7 +93,7 @@ public class InstanceManagementTest exte
                  new String[] {"", "", "10"});
          OMElement result = sendToIM(listRoot);
          assertTrue("Ensures that there are process instances: " + instanceNb(result), instanceNb(result) >0);
- 
+
          listRoot = _client.buildMessage("listInstances", new String[] {"filter", "order", "limit"},
                  new String[] {"blah", "", "10"});
          result = sendToIM(listRoot);

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RedeployTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RedeployTest.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RedeployTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RedeployTest.java Thu May 27 18:09:53 2010
@@ -36,7 +36,7 @@ public class RedeployTest extends Axis2T
         String bundleName = "TestInstanceRetire";
         System.out.println("=> " + server.getODEServer().getProcessStore().getPackages());
         if (server.isDeployed("withVar")) server.undeployProcess(bundleName + "/withVar");
-        
+
         QName deployedQName = server.deployProcess(bundleName + "/withVar").iterator().next();
 
         server.sendRequestFile("http://localhost:8888/processes/testretire",
@@ -44,7 +44,7 @@ public class RedeployTest extends Axis2T
 
         server.undeployProcess(bundleName + "/withVar");
         server.deployProcess(bundleName + "/withVar").iterator().next();
-        
+
         String response = server.sendRequestFile("http://localhost:8888/processes/testretire",
                 bundleName + "/1", "testRequest2.soap");
     }

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/Retire2Test.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/Retire2Test.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/Retire2Test.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/Retire2Test.java Thu May 27 18:09:53 2010
@@ -36,7 +36,7 @@ public class Retire2Test extends Axis2Te
         System.out.println("=> " + server.getODEServer().getProcessStore().getPackages());
         if (server.isDeployed("1")) server.undeployProcess(bundleName + "/1");
         if (server.isDeployed("2")) server.undeployProcess(bundleName + "/2");
-        
+
         QName deployedQName = server.deployProcess(bundleName + "/1").iterator().next();
 
         String response = server.sendRequestFile("http://localhost:8888/processes/testretire",
@@ -45,7 +45,7 @@ public class Retire2Test extends Axis2Te
 
         server.getODEServer().getProcessManagement().setRetired(deployedQName, true);
         server.deployProcess(bundleName + "/2");
-        
+
         response = server.sendRequestFile("http://localhost:8888/processes/testretire",
                 bundleName + "/1", "testRequest2.soap");
 

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java Thu May 27 18:09:53 2010
@@ -36,7 +36,7 @@ public class RetireTest extends Axis2Tes
         System.out.println("=> " + server.getODEServer().getProcessStore().getPackages());
         if (server.isDeployed("1")) server.undeployProcess(bundleName + "/1");
         if (server.isDeployed("2")) server.undeployProcess(bundleName + "/2");
-        
+
         QName deployedQName = server.deployProcess(bundleName + "/1").iterator().next();
 
         server.sendRequestFile("http://localhost:8888/processes/testretire",
@@ -44,7 +44,7 @@ public class RetireTest extends Axis2Tes
 
         server.getODEServer().getProcessManagement().setRetired(deployedQName, true);
         server.deployProcess(bundleName + "/2");
-        
+
         String response = server.sendRequestFile("http://localhost:8888/processes/testretire",
                 bundleName + "/1", "testRequest2.soap");
 

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTestVar.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTestVar.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTestVar.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTestVar.java Thu May 27 18:09:53 2010
@@ -37,7 +37,7 @@ public class RetireTestVar extends Axis2
         System.out.println("=> " + server.getODEServer().getProcessStore().getPackages());
         if (server.isDeployed("withVar")) server.undeployProcess(bundleName + "/withVar");
         if (server.isDeployed("noVar")) server.undeployProcess(bundleName + "/noVar");
-        
+
         QName deployedQName = server.deployProcess(bundleName + "/withVar").iterator().next();
 
         server.sendRequestFile("http://localhost:8888/processes/testretire",
@@ -45,12 +45,12 @@ public class RetireTestVar extends Axis2
 
         server.getODEServer().getProcessManagement().setRetired(deployedQName, true);
         server.deployProcess(bundleName + "/noVar");
-        
+
         response = server.sendRequestFile("http://localhost:8888/processes/testretire",
                 bundleName + "/1", "testRequest2.soap");
 
         assertTrue(response.indexOf("DONE") > 0);
-        
+
         server.sendRequestFile("http://localhost:8888/processes/testretire",
                 bundleName + "/1", "testRequest1.soap");
 

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/rampart/basic/SecuredProcessesTest.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/rampart/basic/SecuredProcessesTest.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/rampart/basic/SecuredProcessesTest.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/axis2/rampart/basic/SecuredProcessesTest.java Thu May 27 18:09:53 2010
@@ -45,7 +45,7 @@ import java.io.FileFilter;
  *
  */
 public class SecuredProcessesTest extends Axis2TestBase {
-    
+
     private String testDir = "TestRampartBasic/secured-processes";
 
 

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessInstanceProfileDAO.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessInstanceProfileDAO.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessInstanceProfileDAO.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessInstanceProfileDAO.java Thu May 27 18:09:53 2010
@@ -23,7 +23,7 @@ import java.util.List;
 
 public interface ProcessInstanceProfileDAO extends ProcessProfileDAO {
     ProcessDAO getProcess();
-    
+
     List<ActivityRecoveryDAO> findActivityRecoveriesByInstance();
 
     List<CorrelationSetDAO> findCorrelationSetsByInstance();
@@ -41,6 +41,6 @@ public interface ProcessInstanceProfileD
     List<ScopeDAO> findScopesByInstance();
 
     List<XmlDataDAO> findXmlDataByInstance();
-    
+
     int countEventsByInstance();
 }
\ No newline at end of file

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessProfileDAO.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessProfileDAO.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessProfileDAO.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessProfileDAO.java Thu May 27 18:09:53 2010
@@ -23,7 +23,7 @@ import java.util.List;
 
 public interface ProcessProfileDAO {
     boolean doesProcessExist();
-    
+
     List<ProcessInstanceDAO> findInstancesByProcess();
 
     List<ActivityRecoveryDAO> findActivityRecoveriesByProcess();

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/dao/jpa/ProcessInstanceProfileDAOImpl.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/dao/jpa/ProcessInstanceProfileDAOImpl.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/dao/jpa/ProcessInstanceProfileDAOImpl.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/dao/jpa/ProcessInstanceProfileDAOImpl.java Thu May 27 18:09:53 2010
@@ -44,18 +44,18 @@ import javax.persistence.Query;
 public class ProcessInstanceProfileDAOImpl extends ProcessProfileDAOImpl implements ProcessInstanceProfileDAO {
     @SuppressWarnings("unused")
     private static final Log __log = LogFactory.getLog(ProcessInstanceProfileDAOImpl.class);
-    
+
     private ProcessInstanceDAOImpl instance;
 
     public ProcessInstanceProfileDAOImpl(EntityManager em, ProcessInstanceDAOImpl instance) {
         super(em, (ProcessDAOImpl)instance.getProcess());
         this.instance = instance;
     }
-    
+
     public ProcessDAO getProcess() {
         return process;
     }
-    
+
     public List<MessageExchangeDAO> findMessageExchangesByInstance() {
         return findByInstance("select x from MessageExchangeDAOImpl as x where x._processInst = :instance");
     }
@@ -95,15 +95,15 @@ public class ProcessInstanceProfileDAOIm
     public int countEventsByInstance() {
         Query query = em.createQuery("select count(e._id) from EventDAOImpl as e where e._instance = :instance");
         query.setParameter("instance", instance);
-        
+
         return ((Long)query.getSingleResult()).intValue();
     }
-    
+
     @SuppressWarnings("unchecked")
     protected <D> List<D> findByInstance(String queryString) {
         Query query = em.createQuery(queryString);
         query.setParameter("instance", instance);
-        
+
         return query.getResultList();
     }
 }
\ No newline at end of file

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/dao/jpa/ProcessProfileDAOImpl.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/dao/jpa/ProcessProfileDAOImpl.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/dao/jpa/ProcessProfileDAOImpl.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/dao/jpa/ProcessProfileDAOImpl.java Thu May 27 18:09:53 2010
@@ -45,7 +45,7 @@ import javax.persistence.Query;
 public class ProcessProfileDAOImpl extends OpenJPADAO implements ProcessProfileDAO {
     @SuppressWarnings("unused")
     private static final Log __log = LogFactory.getLog(ProcessProfileDAOImpl.class);
-    
+
     protected EntityManager em;
     protected ProcessDAOImpl process;
 
@@ -53,14 +53,14 @@ public class ProcessProfileDAOImpl exten
         this.process = process;
         this.em = em;
     }
-    
+
     public boolean doesProcessExist() {
         Query query = em.createQuery("select count(p._id) from ProcessDAOImpl as p where p._guid = :guid");
         query.setParameter("guid", process.getGuid());
-        
+
         return ((Long)query.getSingleResult()) > 0;
     }
-    
+
     public List<ProcessInstanceDAO> findInstancesByProcess() {
         return findByProcess("select i from ProcessInstanceDAOImpl as i where i._process = :process");
     }
@@ -88,7 +88,7 @@ public class ProcessProfileDAOImpl exten
     public List<XmlDataDAO> findXmlDataByProcess() {
         return findByProcess("select x from XmlDataDAOImpl as x where x._scope._processInstance._process = :process");
     }
-    
+
     public List<ActivityRecoveryDAO> findActivityRecoveriesByProcess() {
         return findByProcess("select a from ActivityRecoveryDAOImpl as a where a._instance._process = :process");
     }
@@ -108,15 +108,15 @@ public class ProcessProfileDAOImpl exten
     public int countEventsByProcess() {
         Query query = em.createQuery("select count(e._id) from EventDAOImpl as e where e._instance._process = :process");
         query.setParameter("process", process);
-        
+
         return ((Long)query.getSingleResult()).intValue();
     }
-    
+
     @SuppressWarnings("unchecked")
     protected <D> List<D> findByProcess(String queryString) {
         Query query = em.createQuery(queryString);
         query.setParameter("process", process);
-        
+
         return query.getResultList();
     }
 }
\ No newline at end of file

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/daohib/bpel/ProcessInstanceProfileDaoImpl.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/daohib/bpel/ProcessInstanceProfileDaoImpl.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/daohib/bpel/ProcessInstanceProfileDaoImpl.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/daohib/bpel/ProcessInstanceProfileDaoImpl.java Thu May 27 18:09:53 2010
@@ -55,7 +55,7 @@ import java.util.List;
 public class ProcessInstanceProfileDaoImpl extends ProcessProfileDaoImpl implements ProcessInstanceProfileDAO {
     @SuppressWarnings("unused")
     private static final Log __log = LogFactory.getLog(ProcessInstanceProfileDaoImpl.class);
-    
+
     private ProcessInstanceDaoImpl instance;
 
     public ProcessInstanceProfileDaoImpl(SessionManager sm, ProcessInstanceDaoImpl instance) {
@@ -63,15 +63,15 @@ public class ProcessInstanceProfileDaoIm
         entering("ProcessInstanceProfileDaoImpl.ProcessInstanceProfileDaoImpl");
         this.instance = instance;
     }
-    
+
     public SessionManager getSessionManager() {
         return _sm;
     }
-    
+
     public ProcessDAO getProcess() {
         return process;
     }
-    
+
     public List<MessageExchangeDAO> findMessageExchangesByInstance() {
         return findByInstance("from HMessageExchange as x where x.instance = :instance)", MessageExchangeDaoImpl.class, HMessageExchange.class);
     }
@@ -111,10 +111,10 @@ public class ProcessInstanceProfileDaoIm
     public int countEventsByInstance() {
         Query query = getSession().createQuery("select count(id) from HBpelEvent as e where e.instance = :instance");
         query.setParameter("instance", instance._hobj);
-        
+
         return ((Long)query.uniqueResult()).intValue();
     }
-    
+
     @SuppressWarnings("unchecked")
     protected <D, H> List<D> findByInstance(String queryString, Class daoClass, Class hibClass) {
         List<D> results = new ArrayList<D>();

Modified: ode/trunk/axis2-war/src/test/java/org/apache/ode/daohib/bpel/ProcessProfileDaoImpl.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/ode/daohib/bpel/ProcessProfileDaoImpl.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/ode/daohib/bpel/ProcessProfileDaoImpl.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/ode/daohib/bpel/ProcessProfileDaoImpl.java Thu May 27 18:09:53 2010
@@ -59,7 +59,7 @@ import java.util.List;
 public class ProcessProfileDaoImpl extends HibernateDao implements ProcessProfileDAO {
     @SuppressWarnings("unused")
     private static final Log __log = LogFactory.getLog(ProcessProfileDaoImpl.class);
-    
+
     protected ProcessDaoImpl process;
 
     public ProcessProfileDaoImpl(SessionManager sm, ProcessDaoImpl process) {
@@ -67,24 +67,24 @@ public class ProcessProfileDaoImpl exten
         entering("ProcessProfileDaoImpl.ProcessProfileDaoImpl");
         this.process = process;
     }
-    
+
     public SessionManager getSessionManager() {
         return _sm;
     }
-    
+
     @SuppressWarnings("unchecked")
     public boolean doesProcessExist() {
         boolean exists = false;
-        
+
         Query query = getSession().createQuery("select count(id) from HProcess as p where p.guid = :guid");
         query.setParameter("guid", ((HProcess)process._hobj).getGuid());
         for( Long cnt : (List<Long>)query.list()) {
             exists = cnt.intValue() > 0;
         }
-        
+
         return exists;
     }
-    
+
     public List<ProcessInstanceDAO> findInstancesByProcess() {
         return findByProcess("from HProcessInstance as i where i.process = :process)", ProcessInstanceDaoImpl.class, HProcessInstance.class);
     }
@@ -112,7 +112,7 @@ public class ProcessProfileDaoImpl exten
     public List<XmlDataDAO> findXmlDataByProcess() {
         return findByProcess("from HXmlData as x where x.instance.process = :process", XmlDataDaoImpl.class, HXmlData.class);
     }
-    
+
     public List<ActivityRecoveryDAO> findActivityRecoveriesByProcess() {
         return findByProcess("from HActivityRecovery as a where a.instance.process = :process", ActivityRecoveryDaoImpl.class, HActivityRecovery.class);
     }
@@ -135,7 +135,7 @@ public class ProcessProfileDaoImpl exten
 
         return ((Long)query.uniqueResult()).intValue();
     }
-    
+
     @SuppressWarnings("unchecked")
     protected <D, H> List<D> findByProcess(String queryString, Class daoClass, Class hibClass) {
         List<D> results = new ArrayList<D>();

Modified: ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/policy/sample01/PWCBHandler.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/policy/sample01/PWCBHandler.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/policy/sample01/PWCBHandler.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/policy/sample01/PWCBHandler.java Thu May 27 18:09:53 2010
@@ -59,7 +59,7 @@ public class PWCBHandler implements Call
                 }
             }
 
-            //When the client requests for the password to be added in to the 
+            //When the client requests for the password to be added in to the
             //UT element
             pwcb.setPassword("bobPW");
         }

Modified: ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample03/PWCBHandler.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample03/PWCBHandler.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample03/PWCBHandler.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample03/PWCBHandler.java Thu May 27 18:09:53 2010
@@ -49,7 +49,7 @@ public class PWCBHandler implements Call
             UnsupportedCallbackException {
 
         for (int i = 0; i < callbacks.length; i++) {
-            
+
             //When the server side need to authenticate the user
             WSPasswordCallback pwcb = (WSPasswordCallback)callbacks[i];
             if (pwcb.getUsage() == WSPasswordCallback.USERNAME_TOKEN_UNKNOWN) {
@@ -60,8 +60,8 @@ public class PWCBHandler implements Call
                     throw new UnsupportedCallbackException(callbacks[i], "check failed");
                 }
             }
-            
-            //When the client requests for the password to be added in to the 
+
+            //When the client requests for the password to be added in to the
             //UT element
             pwcb.setPassword("bobPW");
         }

Modified: ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample04/PWCBHandler.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample04/PWCBHandler.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample04/PWCBHandler.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample04/PWCBHandler.java Thu May 27 18:09:53 2010
@@ -49,7 +49,7 @@ public class PWCBHandler implements Call
             UnsupportedCallbackException {
         for (int i = 0; i < callbacks.length; i++) {
             WSPasswordCallback pwcb = (WSPasswordCallback)callbacks[i];
-            
+
             String id = pwcb.getIdentifer();
             if("client".equals(id)) {
                 pwcb.setPassword("apache");

Modified: ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample05/PWCBHandler.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample05/PWCBHandler.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample05/PWCBHandler.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample05/PWCBHandler.java Thu May 27 18:09:53 2010
@@ -49,7 +49,7 @@ public class PWCBHandler implements Call
             UnsupportedCallbackException {
         for (int i = 0; i < callbacks.length; i++) {
             WSPasswordCallback pwcb = (WSPasswordCallback)callbacks[i];
-            
+
             String id = pwcb.getIdentifer();
             if("client".equals(id)) {
                 pwcb.setPassword("apache");

Modified: ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample06/PWCBHandler.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample06/PWCBHandler.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample06/PWCBHandler.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample06/PWCBHandler.java Thu May 27 18:09:53 2010
@@ -49,7 +49,7 @@ public class PWCBHandler implements Call
             UnsupportedCallbackException {
         for (int i = 0; i < callbacks.length; i++) {
             WSPasswordCallback pwcb = (WSPasswordCallback)callbacks[i];
-            
+
             String id = pwcb.getIdentifer();
             if("client".equals(id)) {
                 pwcb.setPassword("apache");

Modified: ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample07/PWCBHandler.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample07/PWCBHandler.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample07/PWCBHandler.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample07/PWCBHandler.java Thu May 27 18:09:53 2010
@@ -49,7 +49,7 @@ public class PWCBHandler implements Call
             UnsupportedCallbackException {
         for (int i = 0; i < callbacks.length; i++) {
             WSPasswordCallback pwcb = (WSPasswordCallback)callbacks[i];
-            
+
             String id = pwcb.getIdentifer();
             if("client".equals(id)) {
                 pwcb.setPassword("apache");

Modified: ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample08/PWCBHandler.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample08/PWCBHandler.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample08/PWCBHandler.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample08/PWCBHandler.java Thu May 27 18:09:53 2010
@@ -49,7 +49,7 @@ public class PWCBHandler implements Call
             UnsupportedCallbackException {
         for (int i = 0; i < callbacks.length; i++) {
             WSPasswordCallback pwcb = (WSPasswordCallback)callbacks[i];
-            
+
             String id = pwcb.getIdentifer();
             if("client".equals(id)) {
                 pwcb.setPassword("apache");

Modified: ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample10/PWCBHandler.java
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample10/PWCBHandler.java?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample10/PWCBHandler.java (original)
+++ ode/trunk/axis2-war/src/test/java/org/apache/rampart/samples/sample10/PWCBHandler.java Thu May 27 18:09:53 2010
@@ -49,7 +49,7 @@ public class PWCBHandler implements Call
             UnsupportedCallbackException {
         for (int i = 0; i < callbacks.length; i++) {
             WSPasswordCallback pwcb = (WSPasswordCallback)callbacks[i];
-            
+
             String id = pwcb.getIdentifer();
             if("client".equals(id)) {
                 pwcb.setPassword("apache");

Modified: ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl Thu May 27 18:09:53 2010
@@ -18,19 +18,19 @@
   ~ under the License.
   -->
 
-<wsdl:definitions 
+<wsdl:definitions
     targetNamespace="http://ode/bpel/unit-test.wsdl"
     xmlns="http://schemas.xmlsoap.org/wsdl/"
     xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
     xmlns:myns="myns"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-    
+
     <wsdl:types>
-        <xsd:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="myns">   
+        <xsd:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="myns">
 
             <xsd:complexType name="MagicPixie">
                 <xsd:sequence>
@@ -45,40 +45,40 @@
                   </xsd:sequence>
                 </xsd:extension>
               </xsd:complexContent>
-            </xsd:complexType>                      
-            
+            </xsd:complexType>
+
             <xsd:element name="hello">
                 <xsd:complexType>
                   <xsd:sequence>
                       <xsd:element name="in" type="myns:MagicPixie" nillable="false" minOccurs="1" maxOccurs="1"/>
                   </xsd:sequence>
-                </xsd:complexType>          
+                </xsd:complexType>
             </xsd:element>
             <xsd:element name="helloResponse">
                 <xsd:complexType>
                   <xsd:sequence>
                       <xsd:element name="out" type="myns:MagicPixie" nillable="false" minOccurs="1" maxOccurs="1"/>
                   </xsd:sequence>
-                </xsd:complexType>          
+                </xsd:complexType>
             </xsd:element>
         </xsd:schema>
     </wsdl:types>
-    
+
     <wsdl:message name="helloRequest">
         <wsdl:part name="parameters" element="myns:hello" />
     </wsdl:message>
     <wsdl:message name="helloResponse">
         <wsdl:part name="parameters" element="myns:helloResponse" />
     </wsdl:message>
-    
-    
+
+
     <wsdl:portType name="HelloPortType">
       <wsdl:operation name="hello">
         <wsdl:input message="tns:helloRequest" name="helloRequest" />
         <wsdl:output message="tns:helloResponse" name="helloResponse" />
         </wsdl:operation>
     </wsdl:portType>
-    
+
     <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
         <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
         <wsdl:operation name="hello">
@@ -90,14 +90,14 @@
                 <soap:body use="literal"/>
             </wsdl:output>
         </wsdl:operation>
-    </wsdl:binding> 
-   
+    </wsdl:binding>
+
     <wsdl:service name="HelloService">
         <wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
             <soap:address location="http://localhost:8888/ode/processes/attrNSWorld"/>
         </wsdl:port>
-    </wsdl:service>   
-    
+    </wsdl:service>
+
    <plnk:partnerLinkType name="HelloPartnerLinkType">
        <plnk:role name="me" portType="tns:HelloPortType"/>
        <plnk:role name="you" portType="tns:HelloPortType"/>

Modified: ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/chooseLanguage.xsl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/chooseLanguage.xsl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/chooseLanguage.xsl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/chooseLanguage.xsl Thu May 27 18:09:53 2010
@@ -26,6 +26,6 @@
   <xsl:output omit-xml-declaration="yes"/>
 
   <xsl:template match="/">
-    <xsl:value-of select="document('language.xml')//languages/language [@name='french']/text()"/>   
-  </xsl:template>  
+    <xsl:value-of select="document('language.xml')//languages/language [@name='french']/text()"/>
+  </xsl:template>
 </xsl:stylesheet>

Modified: ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestAttributeNamespaces/deploy.xml Thu May 27 18:09:53 2010
@@ -17,12 +17,12 @@
   ~ under the License.
   -->
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-    xmlns:pns="http://ode/bpel/unit-test" 
+    xmlns:pns="http://ode/bpel/unit-test"
     xmlns:wns="http://ode/bpel/unit-test.wsdl">
 
 
     <process name="pns:HelloWorld2">
-        <!--in-memory>false</in-memory-->   
+        <!--in-memory>false</in-memory-->
         <active>true</active>
         <provide partnerLink="helloPartnerLink">
             <service name="wns:HelloService" port="HelloPort"/>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/TestCorrelation1.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/TestCorrelation1.bpel?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/TestCorrelation1.bpel (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/TestCorrelation1.bpel Thu May 27 18:09:53 2010
@@ -27,11 +27,11 @@
     xmlns:dummy="http://axis2.ode.apache.org"
     queryLanguage="urn:oasis:names:tc:ws2.0:sublang:xpath2.0"
     expressionLanguage="urn:oasis:names:tc:ws2.0:sublang:xpath2.0">
-  
+
   <import location="TestCorrelation1.wsdl"
     namespace="http://ode/bpel/unit-test/testCorrelation1.wsdl"
     importType="http://schemas.xmlsoap.org/wsdl/" />
-  
+
   <partnerLinks>
     <partnerLink name="testCorrelation1PL" partnerLinkType="test:testCorrelation1Request" myRole="testCorrelation1Service"/>
   </partnerLinks>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/TestCorrelation1.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/TestCorrelation1.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/TestCorrelation1.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/TestCorrelation1.wsdl Thu May 27 18:09:53 2010
@@ -17,17 +17,17 @@
   ~ under the License.
 -->
 
-<wsdl:definitions 
+<wsdl:definitions
     targetNamespace="http://ode/bpel/unit-test.wsdl"
     xmlns="http://schemas.xmlsoap.org/wsdl/"
     xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
-    xmlns:ns0="http://www.w3schools.com" 
-    xmlns:ns1="http://ode/bpel/unit-test/testCorrelation1.wsdl.types" 
+    xmlns:ns0="http://www.w3schools.com"
+    xmlns:ns1="http://ode/bpel/unit-test/testCorrelation1.wsdl.types"
     xmlns:bpws="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-    xmlns:prop="http://docs.oasis-open.org/wsbpel/2.0/varprop" 
+    xmlns:prop="http://docs.oasis-open.org/wsbpel/2.0/varprop"
     xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype">
     <wsdl:types>
         <xsd:schema targetNamespace="http://ode/bpel/unit-test/testCorrelation1.wsdl.types" xmlns="http://ode/bpel/unit-test/testCorrelation1.wsdl.types" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanCorrelation_None/deploy.xml Thu May 27 18:09:53 2010
@@ -18,7 +18,7 @@
 -->
 
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-    xmlns:pns="http://ode/bpel/unit-test/testCorrelation1" 
+    xmlns:pns="http://ode/bpel/unit-test/testCorrelation1"
     xmlns:wns="http://ode/bpel/unit-test/testCorrelation1.wsdl">
 
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFailure/GetTime.xsd
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFailure/GetTime.xsd?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFailure/GetTime.xsd (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFailure/GetTime.xsd Thu May 27 18:09:53 2010
@@ -17,9 +17,9 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-<xs:schema targetNamespace="http://bpms.intalio.com/FirstProcess/Time" 
-           xmlns:ns="http://bpms.intalio.com/FirstProcess/Time" 
-           xmlns:xs="http://www.w3.org/2001/XMLSchema" 
+<xs:schema targetNamespace="http://bpms.intalio.com/FirstProcess/Time"
+           xmlns:ns="http://bpms.intalio.com/FirstProcess/Time"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
            elementFormDefault="qualified">
 
 
@@ -30,7 +30,7 @@
             </xs:sequence>
         </xs:complexType>
     </xs:element>
-    
+
     <xs:element name="TimeResponse">
         <xs:complexType>
             <xs:sequence>
@@ -39,6 +39,6 @@
             </xs:sequence>
         </xs:complexType>
     </xs:element>
-    
+
 </xs:schema>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFailure/TimeService.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFailure/TimeService.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFailure/TimeService.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFailure/TimeService.wsdl Thu May 27 18:09:53 2010
@@ -18,7 +18,7 @@
   ~ under the License.
   -->
 <wsdl:definitions
-    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:tns="http://ws.intalio.com/TimeService/"
     xmlns:s="http://www.w3.org/2001/XMLSchema"
     xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFailure/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFailure/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFailure/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFailure/deploy.xml Thu May 27 18:09:53 2010
@@ -33,7 +33,7 @@
         </dd:provide>
         <dd:invoke partnerLink="timeServerAndFirstProcessForPortTimeServiceSoapPlkVar">
             <dd:service name="TimeService:TimeService" port="TimeServiceSoap"></dd:service>
-        </dd:invoke>        
+        </dd:invoke>
         <dd:cleanup on="always" />
     </dd:process>
 </dd:deploy>
\ No newline at end of file

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFailure/testRequest.soap
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFailure/testRequest.soap?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFailure/testRequest.soap (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFailure/testRequest.soap Thu May 27 18:09:53 2010
@@ -21,8 +21,8 @@
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <!-- test soap message -->
   <SOAP-ENV:Body>
-    <TimeRequest xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsi-wsdl="http://www.intalio.com/BPMS/wsi/wsdl" xmlns:wsi-xf="http://www.intalio.com/BPMS/wsi/xforms" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:ns0="http://bpms.intalio.com/FirstProcess/Time" xmlns:xxforms="http://orbeon.org/oxf/xml/xforms" xmlns="http://bpms.intalio.com/FirstProcess/Time">                   
-        <city>New York</city>                 
-    </TimeRequest>  
+    <TimeRequest xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsi-wsdl="http://www.intalio.com/BPMS/wsi/wsdl" xmlns:wsi-xf="http://www.intalio.com/BPMS/wsi/xforms" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:ns0="http://bpms.intalio.com/FirstProcess/Time" xmlns:xxforms="http://orbeon.org/oxf/xml/xforms" xmlns="http://bpms.intalio.com/FirstProcess/Time">
+        <city>New York</city>
+    </TimeRequest>
   </SOAP-ENV:Body>
 </SOAP-ENV:Envelope>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/HelloWorld2.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/HelloWorld2.bpel?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/HelloWorld2.bpel (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/HelloWorld2.bpel Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <process name="HelloWorld2"
-    targetNamespace="http://ode/bpel/unit-test" 
+    targetNamespace="http://ode/bpel/unit-test"
     xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
     xmlns:tns="http://ode/bpel/unit-test"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -31,12 +31,12 @@
      importType="http://schemas.xmlsoap.org/wsdl/" />
 
    <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
+      <partnerLink name="helloPartnerLink"
          partnerLinkType="test:HelloPartnerLinkType" myRole="me" />
       <partnerLink name="dummyPartnerLink"
          partnerLinkType="test:DummyPartnerLinkType" partnerRole="you" />
    </partnerLinks>
-    
+
    <variables>
      <variable name="myVar" messageType="test:HelloMessage"/>
      <variable name="faultInput" messageType="dummy:faultTestRequest"/>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/HelloWorld2.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/HelloWorld2.wsdl Thu May 27 18:09:53 2010
@@ -18,11 +18,11 @@
   ~ under the License.
   -->
 
-<wsdl:definitions 
+<wsdl:definitions
     targetNamespace="http://ode/bpel/unit-test.wsdl"
     xmlns="http://schemas.xmlsoap.org/wsdl/"
     xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:dummy="http://axis2.ode.apache.org"
@@ -33,14 +33,14 @@
     <wsdl:message name="HelloMessage">
         <wsdl:part name="TestPart" type="xsd:string"/>
     </wsdl:message>
-    
+
     <wsdl:portType name="HelloPortType">
         <wsdl:operation name="hello">
             <wsdl:input message="tns:HelloMessage" name="TestIn"/>
             <wsdl:output message="tns:HelloMessage" name="TestOut"/>
-        </wsdl:operation>    
+        </wsdl:operation>
     </wsdl:portType>
-    
+
      <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
         <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
         <wsdl:operation name="hello">
@@ -52,7 +52,7 @@
             </wsdl:input>
             <wsdl:output>
                 <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl" 
+                    namespace="http://ode/bpel/unit-test.wsdl"
                     use="literal"/>
             </wsdl:output>
         </wsdl:operation>
@@ -62,7 +62,7 @@
             <soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
         </wsdl:port>
     </wsdl:service>
-    
+
    <plnk:partnerLinkType name="HelloPartnerLinkType">
        <plnk:role name="me" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_All/deploy.xml Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-    xmlns:pns="http://ode/bpel/unit-test" 
+    xmlns:pns="http://ode/bpel/unit-test"
     xmlns:wns="http://ode/bpel/unit-test.wsdl" xmlns:dns="http://axis2.ode.apache.org">
 
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/HelloWorld2.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/HelloWorld2.bpel?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/HelloWorld2.bpel (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/HelloWorld2.bpel Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <process name="HelloWorld2"
-    targetNamespace="http://ode/bpel/unit-test" 
+    targetNamespace="http://ode/bpel/unit-test"
     xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
     xmlns:tns="http://ode/bpel/unit-test"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -31,12 +31,12 @@
      importType="http://schemas.xmlsoap.org/wsdl/" />
 
    <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
+      <partnerLink name="helloPartnerLink"
          partnerLinkType="test:HelloPartnerLinkType" myRole="me" />
       <partnerLink name="dummyPartnerLink"
          partnerLinkType="test:DummyPartnerLinkType" partnerRole="you" />
    </partnerLinks>
-    
+
    <variables>
      <variable name="myVar" messageType="test:HelloMessage"/>
      <variable name="faultInput" messageType="dummy:faultTestRequest"/>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/HelloWorld2.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/HelloWorld2.wsdl Thu May 27 18:09:53 2010
@@ -18,11 +18,11 @@
   ~ under the License.
   -->
 
-<wsdl:definitions 
+<wsdl:definitions
     targetNamespace="http://ode/bpel/unit-test.wsdl"
     xmlns="http://schemas.xmlsoap.org/wsdl/"
     xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:dummy="http://axis2.ode.apache.org"
@@ -33,14 +33,14 @@
     <wsdl:message name="HelloMessage">
         <wsdl:part name="TestPart" type="xsd:string"/>
     </wsdl:message>
-    
+
     <wsdl:portType name="HelloPortType">
         <wsdl:operation name="hello">
             <wsdl:input message="tns:HelloMessage" name="TestIn"/>
             <wsdl:output message="tns:HelloMessage" name="TestOut"/>
-        </wsdl:operation>    
+        </wsdl:operation>
     </wsdl:portType>
-    
+
      <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
         <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
         <wsdl:operation name="hello">
@@ -52,7 +52,7 @@
             </wsdl:input>
             <wsdl:output>
                 <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl" 
+                    namespace="http://ode/bpel/unit-test.wsdl"
                     use="literal"/>
             </wsdl:output>
         </wsdl:operation>
@@ -62,7 +62,7 @@
             <soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
         </wsdl:port>
     </wsdl:service>
-    
+
    <plnk:partnerLinkType name="HelloPartnerLinkType">
        <plnk:role name="me" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Correlations/deploy.xml Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-    xmlns:pns="http://ode/bpel/unit-test" 
+    xmlns:pns="http://ode/bpel/unit-test"
     xmlns:wns="http://ode/bpel/unit-test.wsdl" xmlns:dns="http://axis2.ode.apache.org">
 
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/HelloWorld2.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/HelloWorld2.bpel?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/HelloWorld2.bpel (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/HelloWorld2.bpel Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <process name="HelloWorld2"
-    targetNamespace="http://ode/bpel/unit-test" 
+    targetNamespace="http://ode/bpel/unit-test"
     xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
     xmlns:tns="http://ode/bpel/unit-test"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -31,12 +31,12 @@
      importType="http://schemas.xmlsoap.org/wsdl/" />
 
    <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
+      <partnerLink name="helloPartnerLink"
          partnerLinkType="test:HelloPartnerLinkType" myRole="me" />
       <partnerLink name="dummyPartnerLink"
          partnerLinkType="test:DummyPartnerLinkType" partnerRole="you" />
    </partnerLinks>
-    
+
    <variables>
      <variable name="myVar" messageType="test:HelloMessage"/>
      <variable name="faultInput" messageType="dummy:faultTestRequest"/>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/HelloWorld2.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/HelloWorld2.wsdl Thu May 27 18:09:53 2010
@@ -18,11 +18,11 @@
   ~ under the License.
   -->
 
-<wsdl:definitions 
+<wsdl:definitions
     targetNamespace="http://ode/bpel/unit-test.wsdl"
     xmlns="http://schemas.xmlsoap.org/wsdl/"
     xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:dummy="http://axis2.ode.apache.org"
@@ -33,14 +33,14 @@
     <wsdl:message name="HelloMessage">
         <wsdl:part name="TestPart" type="xsd:string"/>
     </wsdl:message>
-    
+
     <wsdl:portType name="HelloPortType">
         <wsdl:operation name="hello">
             <wsdl:input message="tns:HelloMessage" name="TestIn"/>
             <wsdl:output message="tns:HelloMessage" name="TestOut"/>
-        </wsdl:operation>    
+        </wsdl:operation>
     </wsdl:portType>
-    
+
      <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
         <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
         <wsdl:operation name="hello">
@@ -52,7 +52,7 @@
             </wsdl:input>
             <wsdl:output>
                 <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl" 
+                    namespace="http://ode/bpel/unit-test.wsdl"
                     use="literal"/>
             </wsdl:output>
         </wsdl:operation>
@@ -62,7 +62,7 @@
             <soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
         </wsdl:port>
     </wsdl:service>
-    
+
    <plnk:partnerLinkType name="HelloPartnerLinkType">
        <plnk:role name="me" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Events/deploy.xml Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-    xmlns:pns="http://ode/bpel/unit-test" 
+    xmlns:pns="http://ode/bpel/unit-test"
     xmlns:wns="http://ode/bpel/unit-test.wsdl" xmlns:dns="http://axis2.ode.apache.org">
 
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/HelloWorld2.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/HelloWorld2.bpel?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/HelloWorld2.bpel (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/HelloWorld2.bpel Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <process name="HelloWorld2"
-    targetNamespace="http://ode/bpel/unit-test" 
+    targetNamespace="http://ode/bpel/unit-test"
     xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
     xmlns:tns="http://ode/bpel/unit-test"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -31,12 +31,12 @@
      importType="http://schemas.xmlsoap.org/wsdl/" />
 
    <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
+      <partnerLink name="helloPartnerLink"
          partnerLinkType="test:HelloPartnerLinkType" myRole="me" />
       <partnerLink name="dummyPartnerLink"
          partnerLinkType="test:DummyPartnerLinkType" partnerRole="you" />
    </partnerLinks>
-    
+
    <variables>
      <variable name="myVar" messageType="test:HelloMessage"/>
      <variable name="faultInput" messageType="dummy:faultTestRequest"/>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/HelloWorld2.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/HelloWorld2.wsdl Thu May 27 18:09:53 2010
@@ -18,11 +18,11 @@
   ~ under the License.
   -->
 
-<wsdl:definitions 
+<wsdl:definitions
     targetNamespace="http://ode/bpel/unit-test.wsdl"
     xmlns="http://schemas.xmlsoap.org/wsdl/"
     xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:dummy="http://axis2.ode.apache.org"
@@ -33,14 +33,14 @@
     <wsdl:message name="HelloMessage">
         <wsdl:part name="TestPart" type="xsd:string"/>
     </wsdl:message>
-    
+
     <wsdl:portType name="HelloPortType">
         <wsdl:operation name="hello">
             <wsdl:input message="tns:HelloMessage" name="TestIn"/>
             <wsdl:output message="tns:HelloMessage" name="TestOut"/>
-        </wsdl:operation>    
+        </wsdl:operation>
     </wsdl:portType>
-    
+
      <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
         <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
         <wsdl:operation name="hello">
@@ -52,7 +52,7 @@
             </wsdl:input>
             <wsdl:output>
                 <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl" 
+                    namespace="http://ode/bpel/unit-test.wsdl"
                     use="literal"/>
             </wsdl:output>
         </wsdl:operation>
@@ -62,7 +62,7 @@
             <soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
         </wsdl:port>
     </wsdl:service>
-    
+
    <plnk:partnerLinkType name="HelloPartnerLinkType">
        <plnk:role name="me" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Instance/deploy.xml Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-    xmlns:pns="http://ode/bpel/unit-test" 
+    xmlns:pns="http://ode/bpel/unit-test"
     xmlns:wns="http://ode/bpel/unit-test.wsdl" xmlns:dns="http://axis2.ode.apache.org">
 
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/HelloWorld2.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/HelloWorld2.bpel?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/HelloWorld2.bpel (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/HelloWorld2.bpel Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <process name="HelloWorld2"
-    targetNamespace="http://ode/bpel/unit-test" 
+    targetNamespace="http://ode/bpel/unit-test"
     xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
     xmlns:tns="http://ode/bpel/unit-test"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -31,12 +31,12 @@
      importType="http://schemas.xmlsoap.org/wsdl/" />
 
    <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
+      <partnerLink name="helloPartnerLink"
          partnerLinkType="test:HelloPartnerLinkType" myRole="me" />
       <partnerLink name="dummyPartnerLink"
          partnerLinkType="test:DummyPartnerLinkType" partnerRole="you" />
    </partnerLinks>
-    
+
    <variables>
      <variable name="myVar" messageType="test:HelloMessage"/>
      <variable name="faultInput" messageType="dummy:faultTestRequest"/>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/HelloWorld2.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/HelloWorld2.wsdl Thu May 27 18:09:53 2010
@@ -18,11 +18,11 @@
   ~ under the License.
   -->
 
-<wsdl:definitions 
+<wsdl:definitions
     targetNamespace="http://ode/bpel/unit-test.wsdl"
     xmlns="http://schemas.xmlsoap.org/wsdl/"
     xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:dummy="http://axis2.ode.apache.org"
@@ -33,14 +33,14 @@
     <wsdl:message name="HelloMessage">
         <wsdl:part name="TestPart" type="xsd:string"/>
     </wsdl:message>
-    
+
     <wsdl:portType name="HelloPortType">
         <wsdl:operation name="hello">
             <wsdl:input message="tns:HelloMessage" name="TestIn"/>
             <wsdl:output message="tns:HelloMessage" name="TestOut"/>
-        </wsdl:operation>    
+        </wsdl:operation>
     </wsdl:portType>
-    
+
      <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
         <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
         <wsdl:operation name="hello">
@@ -52,7 +52,7 @@
             </wsdl:input>
             <wsdl:output>
                 <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl" 
+                    namespace="http://ode/bpel/unit-test.wsdl"
                     use="literal"/>
             </wsdl:output>
         </wsdl:operation>
@@ -62,7 +62,7 @@
             <soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
         </wsdl:port>
     </wsdl:service>
-    
+
    <plnk:partnerLinkType name="HelloPartnerLinkType">
        <plnk:role name="me" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/deploy.xml Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-    xmlns:pns="http://ode/bpel/unit-test" 
+    xmlns:pns="http://ode/bpel/unit-test"
     xmlns:wns="http://ode/bpel/unit-test.wsdl" xmlns:dns="http://axis2.ode.apache.org">
 
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/HelloWorld2.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/HelloWorld2.bpel?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/HelloWorld2.bpel (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/HelloWorld2.bpel Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <process name="HelloWorld2"
-    targetNamespace="http://ode/bpel/unit-test" 
+    targetNamespace="http://ode/bpel/unit-test"
     xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
     xmlns:tns="http://ode/bpel/unit-test"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -31,12 +31,12 @@
      importType="http://schemas.xmlsoap.org/wsdl/" />
 
    <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
+      <partnerLink name="helloPartnerLink"
          partnerLinkType="test:HelloPartnerLinkType" myRole="me" />
       <partnerLink name="dummyPartnerLink"
          partnerLinkType="test:DummyPartnerLinkType" partnerRole="you" />
    </partnerLinks>
-    
+
    <variables>
      <variable name="myVar" messageType="test:HelloMessage"/>
      <variable name="faultInput" messageType="dummy:faultTestRequest"/>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/HelloWorld2.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/HelloWorld2.wsdl Thu May 27 18:09:53 2010
@@ -18,11 +18,11 @@
   ~ under the License.
   -->
 
-<wsdl:definitions 
+<wsdl:definitions
     targetNamespace="http://ode/bpel/unit-test.wsdl"
     xmlns="http://schemas.xmlsoap.org/wsdl/"
     xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:dummy="http://axis2.ode.apache.org"
@@ -33,14 +33,14 @@
     <wsdl:message name="HelloMessage">
         <wsdl:part name="TestPart" type="xsd:string"/>
     </wsdl:message>
-    
+
     <wsdl:portType name="HelloPortType">
         <wsdl:operation name="hello">
             <wsdl:input message="tns:HelloMessage" name="TestIn"/>
             <wsdl:output message="tns:HelloMessage" name="TestOut"/>
-        </wsdl:operation>    
+        </wsdl:operation>
     </wsdl:portType>
-    
+
      <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
         <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
         <wsdl:operation name="hello">
@@ -52,7 +52,7 @@
             </wsdl:input>
             <wsdl:output>
                 <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl" 
+                    namespace="http://ode/bpel/unit-test.wsdl"
                     use="literal"/>
             </wsdl:output>
         </wsdl:operation>
@@ -62,7 +62,7 @@
             <soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
         </wsdl:port>
     </wsdl:service>
-    
+
    <plnk:partnerLinkType name="HelloPartnerLinkType">
        <plnk:role name="me" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Messages/deploy.xml Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-    xmlns:pns="http://ode/bpel/unit-test" 
+    xmlns:pns="http://ode/bpel/unit-test"
     xmlns:wns="http://ode/bpel/unit-test.wsdl" xmlns:dns="http://axis2.ode.apache.org">
 
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/HelloWorld2.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/HelloWorld2.bpel?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/HelloWorld2.bpel (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/HelloWorld2.bpel Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <process name="HelloWorld2"
-    targetNamespace="http://ode/bpel/unit-test" 
+    targetNamespace="http://ode/bpel/unit-test"
     xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
     xmlns:tns="http://ode/bpel/unit-test"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -31,12 +31,12 @@
      importType="http://schemas.xmlsoap.org/wsdl/" />
 
    <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
+      <partnerLink name="helloPartnerLink"
          partnerLinkType="test:HelloPartnerLinkType" myRole="me" />
       <partnerLink name="dummyPartnerLink"
          partnerLinkType="test:DummyPartnerLinkType" partnerRole="you" />
    </partnerLinks>
-    
+
    <variables>
      <variable name="myVar" messageType="test:HelloMessage"/>
      <variable name="faultInput" messageType="dummy:faultTestRequest"/>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/HelloWorld2.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/HelloWorld2.wsdl Thu May 27 18:09:53 2010
@@ -18,11 +18,11 @@
   ~ under the License.
   -->
 
-<wsdl:definitions 
+<wsdl:definitions
     targetNamespace="http://ode/bpel/unit-test.wsdl"
     xmlns="http://schemas.xmlsoap.org/wsdl/"
     xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:dummy="http://axis2.ode.apache.org"
@@ -33,14 +33,14 @@
     <wsdl:message name="HelloMessage">
         <wsdl:part name="TestPart" type="xsd:string"/>
     </wsdl:message>
-    
+
     <wsdl:portType name="HelloPortType">
         <wsdl:operation name="hello">
             <wsdl:input message="tns:HelloMessage" name="TestIn"/>
             <wsdl:output message="tns:HelloMessage" name="TestOut"/>
-        </wsdl:operation>    
+        </wsdl:operation>
     </wsdl:portType>
-    
+
      <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
         <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
         <wsdl:operation name="hello">
@@ -52,7 +52,7 @@
             </wsdl:input>
             <wsdl:output>
                 <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl" 
+                    namespace="http://ode/bpel/unit-test.wsdl"
                     use="literal"/>
             </wsdl:output>
         </wsdl:operation>
@@ -62,7 +62,7 @@
             <soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
         </wsdl:port>
     </wsdl:service>
-    
+
    <plnk:partnerLinkType name="HelloPartnerLinkType">
        <plnk:role name="me" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_None/deploy.xml Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-    xmlns:pns="http://ode/bpel/unit-test" 
+    xmlns:pns="http://ode/bpel/unit-test"
     xmlns:wns="http://ode/bpel/unit-test.wsdl" xmlns:dns="http://axis2.ode.apache.org">
 
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/HelloWorld2.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/HelloWorld2.bpel?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/HelloWorld2.bpel (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/HelloWorld2.bpel Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <process name="HelloWorld2"
-    targetNamespace="http://ode/bpel/unit-test" 
+    targetNamespace="http://ode/bpel/unit-test"
     xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
     xmlns:tns="http://ode/bpel/unit-test"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -31,12 +31,12 @@
      importType="http://schemas.xmlsoap.org/wsdl/" />
 
    <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
+      <partnerLink name="helloPartnerLink"
          partnerLinkType="test:HelloPartnerLinkType" myRole="me" />
       <partnerLink name="dummyPartnerLink"
          partnerLinkType="test:DummyPartnerLinkType" partnerRole="you" />
    </partnerLinks>
-    
+
    <variables>
      <variable name="myVar" messageType="test:HelloMessage"/>
      <variable name="faultInput" messageType="dummy:faultTestRequest"/>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/HelloWorld2.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/HelloWorld2.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/HelloWorld2.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/HelloWorld2.wsdl Thu May 27 18:09:53 2010
@@ -18,11 +18,11 @@
   ~ under the License.
   -->
 
-<wsdl:definitions 
+<wsdl:definitions
     targetNamespace="http://ode/bpel/unit-test.wsdl"
     xmlns="http://schemas.xmlsoap.org/wsdl/"
     xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:dummy="http://axis2.ode.apache.org"
@@ -33,14 +33,14 @@
     <wsdl:message name="HelloMessage">
         <wsdl:part name="TestPart" type="xsd:string"/>
     </wsdl:message>
-    
+
     <wsdl:portType name="HelloPortType">
         <wsdl:operation name="hello">
             <wsdl:input message="tns:HelloMessage" name="TestIn"/>
             <wsdl:output message="tns:HelloMessage" name="TestOut"/>
-        </wsdl:operation>    
+        </wsdl:operation>
     </wsdl:portType>
-    
+
      <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
         <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
         <wsdl:operation name="hello">
@@ -52,7 +52,7 @@
             </wsdl:input>
             <wsdl:output>
                 <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl" 
+                    namespace="http://ode/bpel/unit-test.wsdl"
                     use="literal"/>
             </wsdl:output>
         </wsdl:operation>
@@ -62,7 +62,7 @@
             <soap:address location="http://localhost:8888/ode/processes/helloWorld"/>
         </wsdl:port>
     </wsdl:service>
-    
+
    <plnk:partnerLinkType name="HelloPartnerLinkType">
        <plnk:role name="me" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanFault_Variables/deploy.xml Thu May 27 18:09:53 2010
@@ -17,7 +17,7 @@
   ~ under the License.
   -->
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-    xmlns:pns="http://ode/bpel/unit-test" 
+    xmlns:pns="http://ode/bpel/unit-test"
     xmlns:wns="http://ode/bpel/unit-test.wsdl" xmlns:dns="http://axis2.ode.apache.org">
 
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/GetTime.xsd
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/GetTime.xsd?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/GetTime.xsd (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/GetTime.xsd Thu May 27 18:09:53 2010
@@ -17,9 +17,9 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-<xs:schema targetNamespace="http://bpms.intalio.com/FirstProcess/Time" 
-           xmlns:ns="http://bpms.intalio.com/FirstProcess/Time" 
-           xmlns:xs="http://www.w3.org/2001/XMLSchema" 
+<xs:schema targetNamespace="http://bpms.intalio.com/FirstProcess/Time"
+           xmlns:ns="http://bpms.intalio.com/FirstProcess/Time"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
            elementFormDefault="qualified">
 
 
@@ -30,7 +30,7 @@
             </xs:sequence>
         </xs:complexType>
     </xs:element>
-    
+
     <xs:element name="TimeResponse">
         <xs:complexType>
             <xs:sequence>
@@ -39,6 +39,6 @@
             </xs:sequence>
         </xs:complexType>
     </xs:element>
-    
+
 </xs:schema>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/TimeService.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/TimeService.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/TimeService.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/TimeService.wsdl Thu May 27 18:09:53 2010
@@ -18,7 +18,7 @@
   ~ under the License.
   -->
 <wsdl:definitions
-    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:tns="http://ws.intalio.com/TimeService/"
     xmlns:s="http://www.w3.org/2001/XMLSchema"
     xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/deploy.xml Thu May 27 18:09:53 2010
@@ -33,7 +33,7 @@
         </dd:provide>
         <dd:invoke partnerLink="timeServerAndFirstProcessForPortTimeServiceSoapPlkVar">
             <dd:service name="TimeService:TimeService" port="TimeServiceSoap"></dd:service>
-        </dd:invoke>        
+        </dd:invoke>
         <dd:cleanup on="always" />
     </dd:process>
 </dd:deploy>
\ No newline at end of file

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/testRequest.soap
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/testRequest.soap?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/testRequest.soap (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_All/testRequest.soap Thu May 27 18:09:53 2010
@@ -21,8 +21,8 @@
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <!-- test soap message -->
   <SOAP-ENV:Body>
-    <TimeRequest xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsi-wsdl="http://www.intalio.com/BPMS/wsi/wsdl" xmlns:wsi-xf="http://www.intalio.com/BPMS/wsi/xforms" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:ns0="http://bpms.intalio.com/FirstProcess/Time" xmlns:xxforms="http://orbeon.org/oxf/xml/xforms" xmlns="http://bpms.intalio.com/FirstProcess/Time">                   
-        <city>New York</city>                 
-    </TimeRequest>  
+    <TimeRequest xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsi-wsdl="http://www.intalio.com/BPMS/wsi/wsdl" xmlns:wsi-xf="http://www.intalio.com/BPMS/wsi/xforms" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:ns0="http://bpms.intalio.com/FirstProcess/Time" xmlns:xxforms="http://orbeon.org/oxf/xml/xforms" xmlns="http://bpms.intalio.com/FirstProcess/Time">
+        <city>New York</city>
+    </TimeRequest>
   </SOAP-ENV:Body>
 </SOAP-ENV:Envelope>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/GetTime.xsd
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/GetTime.xsd?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/GetTime.xsd (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/GetTime.xsd Thu May 27 18:09:53 2010
@@ -17,9 +17,9 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-<xs:schema targetNamespace="http://bpms.intalio.com/FirstProcess/Time" 
-           xmlns:ns="http://bpms.intalio.com/FirstProcess/Time" 
-           xmlns:xs="http://www.w3.org/2001/XMLSchema" 
+<xs:schema targetNamespace="http://bpms.intalio.com/FirstProcess/Time"
+           xmlns:ns="http://bpms.intalio.com/FirstProcess/Time"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
            elementFormDefault="qualified">
 
 
@@ -30,7 +30,7 @@
             </xs:sequence>
         </xs:complexType>
     </xs:element>
-    
+
     <xs:element name="TimeResponse">
         <xs:complexType>
             <xs:sequence>
@@ -39,6 +39,6 @@
             </xs:sequence>
         </xs:complexType>
     </xs:element>
-    
+
 </xs:schema>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/TimeService.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/TimeService.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/TimeService.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/TimeService.wsdl Thu May 27 18:09:53 2010
@@ -18,7 +18,7 @@
   ~ under the License.
   -->
 <wsdl:definitions
-    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:tns="http://ws.intalio.com/TimeService/"
     xmlns:s="http://www.w3.org/2001/XMLSchema"
     xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/deploy.xml Thu May 27 18:09:53 2010
@@ -33,7 +33,7 @@
         </dd:provide>
         <dd:invoke partnerLink="timeServerAndFirstProcessForPortTimeServiceSoapPlkVar">
             <dd:service name="TimeService:TimeService" port="TimeServiceSoap"></dd:service>
-        </dd:invoke>        
+        </dd:invoke>
         <dd:cleanup on="always">
             <dd:category>correlations</dd:category>
         </dd:cleanup>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/testRequest.soap
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/testRequest.soap?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/testRequest.soap (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Correlations/testRequest.soap Thu May 27 18:09:53 2010
@@ -21,8 +21,8 @@
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <!-- test soap message -->
   <SOAP-ENV:Body>
-    <TimeRequest xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsi-wsdl="http://www.intalio.com/BPMS/wsi/wsdl" xmlns:wsi-xf="http://www.intalio.com/BPMS/wsi/xforms" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:ns0="http://bpms.intalio.com/FirstProcess/Time" xmlns:xxforms="http://orbeon.org/oxf/xml/xforms" xmlns="http://bpms.intalio.com/FirstProcess/Time">                   
-        <city>New York</city>                 
-    </TimeRequest>  
+    <TimeRequest xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsi-wsdl="http://www.intalio.com/BPMS/wsi/wsdl" xmlns:wsi-xf="http://www.intalio.com/BPMS/wsi/xforms" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:ns0="http://bpms.intalio.com/FirstProcess/Time" xmlns:xxforms="http://orbeon.org/oxf/xml/xforms" xmlns="http://bpms.intalio.com/FirstProcess/Time">
+        <city>New York</city>
+    </TimeRequest>
   </SOAP-ENV:Body>
 </SOAP-ENV:Envelope>

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/GetTime.xsd
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/GetTime.xsd?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/GetTime.xsd (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/GetTime.xsd Thu May 27 18:09:53 2010
@@ -17,9 +17,9 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-<xs:schema targetNamespace="http://bpms.intalio.com/FirstProcess/Time" 
-           xmlns:ns="http://bpms.intalio.com/FirstProcess/Time" 
-           xmlns:xs="http://www.w3.org/2001/XMLSchema" 
+<xs:schema targetNamespace="http://bpms.intalio.com/FirstProcess/Time"
+           xmlns:ns="http://bpms.intalio.com/FirstProcess/Time"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
            elementFormDefault="qualified">
 
 
@@ -30,7 +30,7 @@
             </xs:sequence>
         </xs:complexType>
     </xs:element>
-    
+
     <xs:element name="TimeResponse">
         <xs:complexType>
             <xs:sequence>
@@ -39,6 +39,6 @@
             </xs:sequence>
         </xs:complexType>
     </xs:element>
-    
+
 </xs:schema>
 

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/TimeService.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/TimeService.wsdl?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/TimeService.wsdl (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/TimeService.wsdl Thu May 27 18:09:53 2010
@@ -18,7 +18,7 @@
   ~ under the License.
   -->
 <wsdl:definitions
-    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns:tns="http://ws.intalio.com/TimeService/"
     xmlns:s="http://www.w3.org/2001/XMLSchema"
     xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"

Modified: ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/deploy.xml?rev=948937&r1=948936&r2=948937&view=diff
==============================================================================
--- ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/deploy.xml (original)
+++ ode/trunk/axis2-war/src/test/resources/TestCleanSuccess_Events/deploy.xml Thu May 27 18:09:53 2010
@@ -33,7 +33,7 @@
         </dd:provide>
         <dd:invoke partnerLink="timeServerAndFirstProcessForPortTimeServiceSoapPlkVar">
             <dd:service name="TimeService:TimeService" port="TimeServiceSoap"></dd:service>
-        </dd:invoke>        
+        </dd:invoke>
         <dd:cleanup on="always">
             <dd:category>events</dd:category>
         </dd:cleanup>