You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by rr...@apache.org on 2009/09/11 17:07:51 UTC

svn commit: r813870 [2/15] - in /ode/branches/APACHE_ODE_1.X: ./ agents/src/main/java/org/apache/ode/agents/memory/ agents/src/main/resources/META-INF/ axis2-war/src/main/webapp/ axis2-war/src/main/webapp/WEB-INF/ axis2-war/src/main/webapp/WEB-INF/clas...

Modified: ode/branches/APACHE_ODE_1.X/agents/src/main/java/org/apache/ode/agents/memory/SizingAgent.java
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/agents/src/main/java/org/apache/ode/agents/memory/SizingAgent.java?rev=813870&r1=813869&r2=813870&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/agents/src/main/java/org/apache/ode/agents/memory/SizingAgent.java (original)
+++ ode/branches/APACHE_ODE_1.X/agents/src/main/java/org/apache/ode/agents/memory/SizingAgent.java Fri Sep 11 15:07:05 2009
@@ -17,189 +17,189 @@
  * under the License.
  */
 
-package org.apache.ode.agents.memory;
-
-import java.lang.instrument.Instrumentation;
-import java.lang.reflect.Array;
-import java.lang.reflect.Field;
-import java.lang.reflect.Modifier;
-import java.util.Calendar;
-import java.util.IdentityHashMap;
-import java.util.Map;
-import java.util.Stack;
-
-
-/**
- * Class 
- *
- * @author $author$
- * @version $Revision$
-  */
-public class SizingAgent {
-    private static Instrumentation instrumentation;
-
-    /**
-     * $method$
-     *
-     * @param options options 
-     * @param instrumentation instrumentation 
-     */
-    public static void premain(String options, Instrumentation instrumentation) {
-        SizingAgent.instrumentation = instrumentation;
-        Class[] loaded = instrumentation.getAllLoadedClasses();
-    }
-    
-    /**
-     * $method$
-     *
-     * @param args args 
-     */
-    public static void main(String[] args) {
-        System.out.println("Size of Object: " + sizeOf(new Object()));
-        System.out.println("Size of direct subclass: " + sizeOf(new SizingAgent()));
-        System.out.println("Size of Calendar: " +
-            sizeOf(Calendar.getInstance()));
-    }
-
-    /**
-     * Returns object size.
-     */
-    public static long sizeOf(Object obj) {
-        if (instrumentation == null) {
-        	return 0;
-        }
-
-        if (isSharedFlyweight(obj)) {
-            return 0;
-        }
-
-        return instrumentation.getObjectSize(obj);
-    }
-
-    /**
-     * Returns deep size of object, recursively iterating over its
-     * fields and superclasses.
-     */
-    public static long deepSizeOf(Object obj) {
-        if (instrumentation == null) {
-        	return 0;
-        }
-        
-        Map visited = new IdentityHashMap();
-        Stack stack = new Stack();
-        stack.push(obj);
-
-        long result = 0;
-
-        do {
-            result += internalSizeOf(stack.pop(), stack, visited);
-        } while (!stack.isEmpty());
-
-        return result;
-    }
-
-    /**
-     * Returns true if this is a well-known shared flyweight. For
-     * example, interned Strings, Booleans and Number objects
-     */
-    private static boolean isSharedFlyweight(Object obj) {
-        // optimization - all of our flyweights are Comparable
-        if (obj instanceof Comparable) {
-            if (obj instanceof Enum) {
-                return true;
-            } else if (obj instanceof String) {
-                return (obj == ((String) obj).intern());
-            } else if (obj instanceof Boolean) {
-                return ((obj == Boolean.TRUE) || (obj == Boolean.FALSE));
-            } else if (obj instanceof Integer) {
-                return (obj == Integer.valueOf((Integer) obj));
-            } else if (obj instanceof Short) {
-                return (obj == Short.valueOf((Short) obj));
-            } else if (obj instanceof Byte) {
-                return (obj == Byte.valueOf((Byte) obj));
-            } else if (obj instanceof Long) {
-                return (obj == Long.valueOf((Long) obj));
-            } else if (obj instanceof Character) {
-                return (obj == Character.valueOf((Character) obj));
-            }
-        }
-
-        return false;
-    }
-
-    /**
-     * $method$
-     *
-     * @param obj obj 
-     * @param visited visited 
-     *
-     * @return type
-     */
-    private static boolean skipObject(Object obj, Map visited) {
-        return (obj == null) || visited.containsKey(obj) ||
-        isSharedFlyweight(obj);
-    }
-
-    /**
-     * $method$
-     *
-     * @param obj obj 
-     * @param stack stack 
-     * @param visited visited 
-     *
-     * @return type
-     */
-    private static long internalSizeOf(Object obj, Stack stack, Map visited) {
-        if (skipObject(obj, visited)) {
-            return 0;
-        }
-
-        Class clazz = obj.getClass();
-
-        if (clazz.isArray()) {
-            addArrayElementsToStack(clazz, obj, stack);
-        } else {
-            // add all non-primitive fields to the stack
-            while (clazz != null) {
-                Field[] fields = clazz.getDeclaredFields();
-
-                for (Field field : fields) {
-                    if (!Modifier.isStatic(field.getModifiers()) &&
-                            !field.getType().isPrimitive()) {
-                        field.setAccessible(true);
-
-                        try {
-                            stack.add(field.get(obj));
-                        } catch (IllegalAccessException ex) {
-                            throw new RuntimeException(ex);
-                        }
-                    }
-                }
-
-                clazz = clazz.getSuperclass();
-            }
-        }
-
-        visited.put(obj, null);
-
-        return sizeOf(obj);
-    }
-
-    /**
-     * $method$
-     *
-     * @param clazz clazz 
-     * @param obj obj 
-     * @param stack stack 
-     */
-    private static void addArrayElementsToStack(Class clazz, Object obj,
-        Stack stack) {
-        if (!clazz.getComponentType().isPrimitive()) {
-            int length = Array.getLength(obj);
-
-            for (int i = 0; i < length; i++) {
-                stack.add(Array.get(obj, i));
-            }
-        }
-    }
-}
+package org.apache.ode.agents.memory;
+
+import java.lang.instrument.Instrumentation;
+import java.lang.reflect.Array;
+import java.lang.reflect.Field;
+import java.lang.reflect.Modifier;
+import java.util.Calendar;
+import java.util.IdentityHashMap;
+import java.util.Map;
+import java.util.Stack;
+
+
+/**
+ * Class 
+ *
+ * @author $author$
+ * @version $Revision$
+  */
+public class SizingAgent {
+    private static Instrumentation instrumentation;
+
+    /**
+     * $method$
+     *
+     * @param options options 
+     * @param instrumentation instrumentation 
+     */
+    public static void premain(String options, Instrumentation instrumentation) {
+        SizingAgent.instrumentation = instrumentation;
+        Class[] loaded = instrumentation.getAllLoadedClasses();
+    }
+    
+    /**
+     * $method$
+     *
+     * @param args args 
+     */
+    public static void main(String[] args) {
+        System.out.println("Size of Object: " + sizeOf(new Object()));
+        System.out.println("Size of direct subclass: " + sizeOf(new SizingAgent()));
+        System.out.println("Size of Calendar: " +
+            sizeOf(Calendar.getInstance()));
+    }
+
+    /**
+     * Returns object size.
+     */
+    public static long sizeOf(Object obj) {
+        if (instrumentation == null) {
+        	return 0;
+        }
+
+        if (isSharedFlyweight(obj)) {
+            return 0;
+        }
+
+        return instrumentation.getObjectSize(obj);
+    }
+
+    /**
+     * Returns deep size of object, recursively iterating over its
+     * fields and superclasses.
+     */
+    public static long deepSizeOf(Object obj) {
+        if (instrumentation == null) {
+        	return 0;
+        }
+        
+        Map visited = new IdentityHashMap();
+        Stack stack = new Stack();
+        stack.push(obj);
+
+        long result = 0;
+
+        do {
+            result += internalSizeOf(stack.pop(), stack, visited);
+        } while (!stack.isEmpty());
+
+        return result;
+    }
+
+    /**
+     * Returns true if this is a well-known shared flyweight. For
+     * example, interned Strings, Booleans and Number objects
+     */
+    private static boolean isSharedFlyweight(Object obj) {
+        // optimization - all of our flyweights are Comparable
+        if (obj instanceof Comparable) {
+            if (obj instanceof Enum) {
+                return true;
+            } else if (obj instanceof String) {
+                return (obj == ((String) obj).intern());
+            } else if (obj instanceof Boolean) {
+                return ((obj == Boolean.TRUE) || (obj == Boolean.FALSE));
+            } else if (obj instanceof Integer) {
+                return (obj == Integer.valueOf((Integer) obj));
+            } else if (obj instanceof Short) {
+                return (obj == Short.valueOf((Short) obj));
+            } else if (obj instanceof Byte) {
+                return (obj == Byte.valueOf((Byte) obj));
+            } else if (obj instanceof Long) {
+                return (obj == Long.valueOf((Long) obj));
+            } else if (obj instanceof Character) {
+                return (obj == Character.valueOf((Character) obj));
+            }
+        }
+
+        return false;
+    }
+
+    /**
+     * $method$
+     *
+     * @param obj obj 
+     * @param visited visited 
+     *
+     * @return type
+     */
+    private static boolean skipObject(Object obj, Map visited) {
+        return (obj == null) || visited.containsKey(obj) ||
+        isSharedFlyweight(obj);
+    }
+
+    /**
+     * $method$
+     *
+     * @param obj obj 
+     * @param stack stack 
+     * @param visited visited 
+     *
+     * @return type
+     */
+    private static long internalSizeOf(Object obj, Stack stack, Map visited) {
+        if (skipObject(obj, visited)) {
+            return 0;
+        }
+
+        Class clazz = obj.getClass();
+
+        if (clazz.isArray()) {
+            addArrayElementsToStack(clazz, obj, stack);
+        } else {
+            // add all non-primitive fields to the stack
+            while (clazz != null) {
+                Field[] fields = clazz.getDeclaredFields();
+
+                for (Field field : fields) {
+                    if (!Modifier.isStatic(field.getModifiers()) &&
+                            !field.getType().isPrimitive()) {
+                        field.setAccessible(true);
+
+                        try {
+                            stack.add(field.get(obj));
+                        } catch (IllegalAccessException ex) {
+                            throw new RuntimeException(ex);
+                        }
+                    }
+                }
+
+                clazz = clazz.getSuperclass();
+            }
+        }
+
+        visited.put(obj, null);
+
+        return sizeOf(obj);
+    }
+
+    /**
+     * $method$
+     *
+     * @param clazz clazz 
+     * @param obj obj 
+     * @param stack stack 
+     */
+    private static void addArrayElementsToStack(Class clazz, Object obj,
+        Stack stack) {
+        if (!clazz.getComponentType().isPrimitive()) {
+            int length = Array.getLength(obj);
+
+            for (int i = 0; i < length; i++) {
+                stack.add(Array.get(obj, i));
+            }
+        }
+    }
+}

Propchange: ode/branches/APACHE_ODE_1.X/agents/src/main/java/org/apache/ode/agents/memory/SizingAgent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/agents/src/main/resources/META-INF/MANIFEST.MF
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/classes/commons-logging.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/classes/log4j.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/conf/axis2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/processes/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/css/SyntaxHighlighter.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/css/global.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/css/reset.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/css/style.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/deployment.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/fileupload.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/index.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/instances.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/DeploymentService.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/InstanceManagementAPI.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/ODE.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/ProcessManagementAPI.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/WSRequest.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/bubbling/accordion.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/bubbling/assets/accordion.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/bubbling/bubbling.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/animation.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/button.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/charts-experimental-min.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/container.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/autocomplete.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/button.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/calendar.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/colorpicker.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/container.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/datatable.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/editor.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/fonts.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/imagecropper.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/layout.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/logger.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/menu.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/profilerviewer.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/resize.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/simpleeditor.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/skin.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/tabview.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/treeview.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/css/yuitest.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/datasource-beta-min.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/element-beta.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/json-min.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/tab/border_tabs.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/tab/skin-sam.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/tab/skins/sam/tabview-skin.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/tab/skins/sam/tabview.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/tab/tabview-core.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/tab/tabview.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/tabview.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/utilities.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/js/yui/yahoo-dom-event.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/main/webapp/processes.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/Axis2TestBase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/BpelActivityTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/DummyException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/DummyService.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/EndpointConfigurationTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/EndpointTimeoutsTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/FailFastTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/FailureInvokeTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/JettyWrapper.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/MessageStructureTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ODEConfigDirAware.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeader2Test.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/SoapHeaderTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/XSDReferencesDeployTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/correlation/CorrelationJoinHibTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/correlation/CorrelationJoinLazyHibTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/correlation/CorrelationJoinLazyTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/correlation/CorrelationJoinTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/correlation/CorrelationMultiHibTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/correlation/CorrelationMultiTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/httpbinding/HttpBindingTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/InstanceCountTest.java
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/InstanceCountTest.java?rev=813870&r1=813869&r2=813870&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/InstanceCountTest.java (original)
+++ ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/InstanceCountTest.java Fri Sep 11 15:07:05 2009
@@ -17,166 +17,166 @@
  * under the License.
  */
 
-package org.apache.ode.axis2.hydration;
-
-import static org.testng.Assert.assertTrue;
-import static org.testng.Assert.fail;
-
-import org.apache.axiom.om.OMAbstractFactory;
-import org.apache.axiom.om.OMElement;
-import org.apache.axiom.om.OMFactory;
-import org.apache.axiom.om.OMNamespace;
-import org.apache.axiom.om.OMText;
-import org.apache.axiom.om.util.Base64;
-
-import org.apache.ode.axis2.Axis2TestBase;
-import org.apache.ode.axis2.DummyService;
-import org.apache.ode.axis2.service.ServiceClientUtil;
-import org.apache.ode.tools.sendsoap.cline.HttpSoapSender;
-import org.apache.ode.utils.Namespaces;
-
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.BeforeMethod;
-import org.testng.annotations.Test;
-
-import java.io.ByteArrayOutputStream;
-import java.io.InputStream;
-
-import java.net.URL;
-
-import java.text.DateFormat;
-import java.text.SimpleDateFormat;
-
-import javax.xml.namespace.QName;
-
-
-/**
- * Test the limit on the number of process instances. 
- *
- * @author $author$
- * @version $Revision$
-  */
-public class InstanceCountTest extends Axis2TestBase {
-    private OMFactory _factory;
-    private DateFormat xsdDF = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm");
-    private ServiceClientUtil _client;
-    private String _deployedName;
-
-    /**
-     * test case set up
-     *
-     * @throws Exception Exception 
-     */
-    @BeforeMethod
-    protected void setUp() throws Exception {
-        super.setUp();
-
-        // Create a factory
-        _factory = OMAbstractFactory.getOMFactory();
-        _client = new ServiceClientUtil();
-
-        // Just making sure the instance starts
-        Thread.sleep(1000);
-    }
-
-    /**
-     * test case tear down
-     *
-     * @throws Exception Exception 
-     */
-    @AfterMethod
-    protected void tearDown() throws Exception {
-        super.tearDown();
-    }
-    
-    /**
-     * Tests rendezvous
-     * 
-     * @throws Exception
-     */
-    String firstResponse, secondResponse;
-    boolean secondStarted;
-    
-    @Test(dataProvider="configs")
-    public void testCorrelationJoin() throws Exception {
-        final String bundleName = "TestCorrelationJoin";
-        
-        firstResponse = secondResponse = null;
-        secondStarted = true;
-        
-        server.getODEServer().getBpelServer().setInstanceThrottledMaximumCount(1);
-        // deploy the required service
-        server.deployService(DummyService.class.getCanonicalName());
-        if (server.isDeployed(bundleName)) server.undeployProcess(bundleName);
-        server.deployProcess(bundleName);
-
-        new Thread() {
-            public void run() {
-                try {
-                    Thread.sleep(3000);
-                    server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
-                            bundleName, "testRequest2.soap");
-                } catch( Exception e ) {
-                    fail(e.getMessage());
-                }
-            }
-        }.start();        
-        
-        Thread processOne = new Thread() {
-        	public void run() {
-                try {
-                    firstResponse = server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
-                            bundleName, "testRequest.soap");
-                    System.out.println("=>\n" + firstResponse);
-                } catch (Exception e) {
-                    fail(e.getMessage());
-                }
-        	}
-        };
-        processOne.start();
-        
-        Thread processTwo = new Thread() {
-            public void run() {
-                try {
-                    Thread.sleep(3000);
-                    secondResponse = server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
-                            bundleName, "testRequest.soap");
-                } catch( Exception e ) {
-                    fail(e.getMessage());
-                }
-            }
-        };
-        processTwo.start();
-        processTwo.join();
-
-        try {
-	        assertTrue(secondResponse.contains("tooManyInstances"));
-        } catch (Exception e) {
-            server.undeployProcess(bundleName);
-			fail("The second instance was allowed to start");
-        }
-		
-        new Thread() {
-            public void run() {
-                try {
-                    Thread.sleep(6000);
-                    server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
-                            bundleName, "testRequest3.soap");
-                } catch( Exception e ) {
-                    fail(e.getMessage());
-                }
-            }
-        }.start();
-
-        try {
-	        processOne.join();        
-	        assertTrue(firstResponse.contains(">1;2;3;<"));
-        } finally {
-	        server.undeployProcess(bundleName);
-        }
-    }
-
-    public String getODEConfigDir() {
-        return getClass().getClassLoader().getResource("webapp").getFile() + "/WEB-INF/conf.jpa-derby"; 
-    }    
-}
+package org.apache.ode.axis2.hydration;
+
+import static org.testng.Assert.assertTrue;
+import static org.testng.Assert.fail;
+
+import org.apache.axiom.om.OMAbstractFactory;
+import org.apache.axiom.om.OMElement;
+import org.apache.axiom.om.OMFactory;
+import org.apache.axiom.om.OMNamespace;
+import org.apache.axiom.om.OMText;
+import org.apache.axiom.om.util.Base64;
+
+import org.apache.ode.axis2.Axis2TestBase;
+import org.apache.ode.axis2.DummyService;
+import org.apache.ode.axis2.service.ServiceClientUtil;
+import org.apache.ode.tools.sendsoap.cline.HttpSoapSender;
+import org.apache.ode.utils.Namespaces;
+
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+
+import java.io.ByteArrayOutputStream;
+import java.io.InputStream;
+
+import java.net.URL;
+
+import java.text.DateFormat;
+import java.text.SimpleDateFormat;
+
+import javax.xml.namespace.QName;
+
+
+/**
+ * Test the limit on the number of process instances. 
+ *
+ * @author $author$
+ * @version $Revision$
+  */
+public class InstanceCountTest extends Axis2TestBase {
+    private OMFactory _factory;
+    private DateFormat xsdDF = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm");
+    private ServiceClientUtil _client;
+    private String _deployedName;
+
+    /**
+     * test case set up
+     *
+     * @throws Exception Exception 
+     */
+    @BeforeMethod
+    protected void setUp() throws Exception {
+        super.setUp();
+
+        // Create a factory
+        _factory = OMAbstractFactory.getOMFactory();
+        _client = new ServiceClientUtil();
+
+        // Just making sure the instance starts
+        Thread.sleep(1000);
+    }
+
+    /**
+     * test case tear down
+     *
+     * @throws Exception Exception 
+     */
+    @AfterMethod
+    protected void tearDown() throws Exception {
+        super.tearDown();
+    }
+    
+    /**
+     * Tests rendezvous
+     * 
+     * @throws Exception
+     */
+    String firstResponse, secondResponse;
+    boolean secondStarted;
+    
+    @Test(dataProvider="configs")
+    public void testCorrelationJoin() throws Exception {
+        final String bundleName = "TestCorrelationJoin";
+        
+        firstResponse = secondResponse = null;
+        secondStarted = true;
+        
+        server.getODEServer().getBpelServer().setInstanceThrottledMaximumCount(1);
+        // deploy the required service
+        server.deployService(DummyService.class.getCanonicalName());
+        if (server.isDeployed(bundleName)) server.undeployProcess(bundleName);
+        server.deployProcess(bundleName);
+
+        new Thread() {
+            public void run() {
+                try {
+                    Thread.sleep(3000);
+                    server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
+                            bundleName, "testRequest2.soap");
+                } catch( Exception e ) {
+                    fail(e.getMessage());
+                }
+            }
+        }.start();        
+        
+        Thread processOne = new Thread() {
+        	public void run() {
+                try {
+                    firstResponse = server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
+                            bundleName, "testRequest.soap");
+                    System.out.println("=>\n" + firstResponse);
+                } catch (Exception e) {
+                    fail(e.getMessage());
+                }
+        	}
+        };
+        processOne.start();
+        
+        Thread processTwo = new Thread() {
+            public void run() {
+                try {
+                    Thread.sleep(3000);
+                    secondResponse = server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
+                            bundleName, "testRequest.soap");
+                } catch( Exception e ) {
+                    fail(e.getMessage());
+                }
+            }
+        };
+        processTwo.start();
+        processTwo.join();
+
+        try {
+	        assertTrue(secondResponse.contains("tooManyInstances"));
+        } catch (Exception e) {
+            server.undeployProcess(bundleName);
+			fail("The second instance was allowed to start");
+        }
+		
+        new Thread() {
+            public void run() {
+                try {
+                    Thread.sleep(6000);
+                    server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
+                            bundleName, "testRequest3.soap");
+                } catch( Exception e ) {
+                    fail(e.getMessage());
+                }
+            }
+        }.start();
+
+        try {
+	        processOne.join();        
+	        assertTrue(firstResponse.contains(">1;2;3;<"));
+        } finally {
+	        server.undeployProcess(bundleName);
+        }
+    }
+
+    public String getODEConfigDir() {
+        return getClass().getClassLoader().getResource("webapp").getFile() + "/WEB-INF/conf.jpa-derby"; 
+    }    
+}

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/InstanceCountTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/ProcessCountTest.java
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/ProcessCountTest.java?rev=813870&r1=813869&r2=813870&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/ProcessCountTest.java (original)
+++ ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/ProcessCountTest.java Fri Sep 11 15:07:05 2009
@@ -17,128 +17,128 @@
  * under the License.
  */
 
-package org.apache.ode.axis2.hydration;
-
-import static org.testng.Assert.assertTrue;
-import static org.testng.Assert.fail;
-import static org.testng.AssertJUnit.assertTrue;
-
-import org.apache.axiom.om.OMAbstractFactory;
-import org.apache.axiom.om.OMElement;
-import org.apache.axiom.om.OMFactory;
-import org.apache.axiom.om.OMNamespace;
-import org.apache.axiom.om.OMText;
-import org.apache.axiom.om.util.Base64;
-
-import org.apache.ode.axis2.Axis2TestBase;
-import org.apache.ode.axis2.DummyService;
-import org.apache.ode.axis2.service.ServiceClientUtil;
-import org.apache.ode.tools.sendsoap.cline.HttpSoapSender;
-import org.apache.ode.utils.DOMUtils;
-import org.apache.ode.utils.Namespaces;
-
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.BeforeMethod;
-import org.testng.annotations.Test;
-import org.w3c.dom.Element;
-
-import java.io.ByteArrayOutputStream;
-import java.io.InputStream;
-
-import java.net.URL;
-
-import java.text.DateFormat;
-import java.text.SimpleDateFormat;
-
-import javax.xml.namespace.QName;
-
-
-/**
- * Test the limit on the number of process instances. 
- *
- * @author $author$
- * @version $Revision$
-  */
-public class ProcessCountTest extends Axis2TestBase {
-    private OMFactory _factory;
-    private DateFormat xsdDF = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm");
-    private ServiceClientUtil _client;
-    private String _deployedName;
-
-    /**
-     * test case set up
-     *
-     * @throws Exception Exception 
-     */
-    @BeforeMethod
-    protected void setUp() throws Exception {
-        super.setUp();
-
-        // Create a factory
-        _factory = OMAbstractFactory.getOMFactory();
-        _client = new ServiceClientUtil();
-
-        // Just making sure the instance starts
-        Thread.sleep(1000);
-    }
-
-    /**
-     * test case tear down
-     *
-     * @throws Exception Exception 
-     */
-    @AfterMethod
-    protected void tearDown() throws Exception {
-        super.tearDown();
-    }
-    
-    /**
-     * Tests rendezvous
-     * 
-     * @throws Exception
-     */
-    String firstResponse, secondResponse;
-    boolean secondStarted;
-    String nsAttr;
-    
-    @Test(dataProvider="configs")
-    public void testCorrelationJoin() throws Exception {
-        final String bundleOne = "TestCorrelationJoin", bundleTwo = "TestAttributeNamespaces";
-        
-        firstResponse = secondResponse = null;
-        secondStarted = true;
-        
-        server.getODEServer().getBpelServer().setProcessThrottledMaximumCount(0);
-
-        // deploy the first service
-        server.deployService(DummyService.class.getCanonicalName());
-        if (server.isDeployed(bundleOne)) server.undeployProcess(bundleOne);
-        server.deployProcess(bundleOne);
-
-        Thread processOne = new Thread() {
-        	public void run() {
-                try {
-                    firstResponse = server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
-                            bundleOne, "testRequest.soap");
-                    System.out.println("=>\n" + firstResponse);
-                } catch (Exception e) {
-                    fail(e.getMessage());
-                }
-        	}
-        };
-        processOne.start();
-        processOne.join();
-        
-        try {
-	        processOne.join();        
-	        assertTrue(firstResponse.contains("tooManyProcesses"), firstResponse);
-        } finally {
-	        server.undeployProcess(bundleOne);
-        }
-        
-    }
-
-    public String getODEConfigDir() {
-        return getClass().getClassLoader().getResource("webapp").getFile() + "/WEB-INF/conf.jpa-derby"; 
-    }    
-}
+package org.apache.ode.axis2.hydration;
+
+import static org.testng.Assert.assertTrue;
+import static org.testng.Assert.fail;
+import static org.testng.AssertJUnit.assertTrue;
+
+import org.apache.axiom.om.OMAbstractFactory;
+import org.apache.axiom.om.OMElement;
+import org.apache.axiom.om.OMFactory;
+import org.apache.axiom.om.OMNamespace;
+import org.apache.axiom.om.OMText;
+import org.apache.axiom.om.util.Base64;
+
+import org.apache.ode.axis2.Axis2TestBase;
+import org.apache.ode.axis2.DummyService;
+import org.apache.ode.axis2.service.ServiceClientUtil;
+import org.apache.ode.tools.sendsoap.cline.HttpSoapSender;
+import org.apache.ode.utils.DOMUtils;
+import org.apache.ode.utils.Namespaces;
+
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+import org.w3c.dom.Element;
+
+import java.io.ByteArrayOutputStream;
+import java.io.InputStream;
+
+import java.net.URL;
+
+import java.text.DateFormat;
+import java.text.SimpleDateFormat;
+
+import javax.xml.namespace.QName;
+
+
+/**
+ * Test the limit on the number of process instances. 
+ *
+ * @author $author$
+ * @version $Revision$
+  */
+public class ProcessCountTest extends Axis2TestBase {
+    private OMFactory _factory;
+    private DateFormat xsdDF = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm");
+    private ServiceClientUtil _client;
+    private String _deployedName;
+
+    /**
+     * test case set up
+     *
+     * @throws Exception Exception 
+     */
+    @BeforeMethod
+    protected void setUp() throws Exception {
+        super.setUp();
+
+        // Create a factory
+        _factory = OMAbstractFactory.getOMFactory();
+        _client = new ServiceClientUtil();
+
+        // Just making sure the instance starts
+        Thread.sleep(1000);
+    }
+
+    /**
+     * test case tear down
+     *
+     * @throws Exception Exception 
+     */
+    @AfterMethod
+    protected void tearDown() throws Exception {
+        super.tearDown();
+    }
+    
+    /**
+     * Tests rendezvous
+     * 
+     * @throws Exception
+     */
+    String firstResponse, secondResponse;
+    boolean secondStarted;
+    String nsAttr;
+    
+    @Test(dataProvider="configs")
+    public void testCorrelationJoin() throws Exception {
+        final String bundleOne = "TestCorrelationJoin", bundleTwo = "TestAttributeNamespaces";
+        
+        firstResponse = secondResponse = null;
+        secondStarted = true;
+        
+        server.getODEServer().getBpelServer().setProcessThrottledMaximumCount(0);
+
+        // deploy the first service
+        server.deployService(DummyService.class.getCanonicalName());
+        if (server.isDeployed(bundleOne)) server.undeployProcess(bundleOne);
+        server.deployProcess(bundleOne);
+
+        Thread processOne = new Thread() {
+        	public void run() {
+                try {
+                    firstResponse = server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
+                            bundleOne, "testRequest.soap");
+                    System.out.println("=>\n" + firstResponse);
+                } catch (Exception e) {
+                    fail(e.getMessage());
+                }
+        	}
+        };
+        processOne.start();
+        processOne.join();
+        
+        try {
+	        processOne.join();        
+	        assertTrue(firstResponse.contains("tooManyProcesses"), firstResponse);
+        } finally {
+	        server.undeployProcess(bundleOne);
+        }
+        
+    }
+
+    public String getODEConfigDir() {
+        return getClass().getClassLoader().getResource("webapp").getFile() + "/WEB-INF/conf.jpa-derby"; 
+    }    
+}

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/ProcessCountTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/ProcessSizeTest.java
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/ProcessSizeTest.java?rev=813870&r1=813869&r2=813870&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/ProcessSizeTest.java (original)
+++ ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/ProcessSizeTest.java Fri Sep 11 15:07:05 2009
@@ -17,128 +17,128 @@
  * under the License.
  */
 
-package org.apache.ode.axis2.hydration;
-
-import static org.testng.Assert.assertTrue;
-import static org.testng.Assert.fail;
-import static org.testng.AssertJUnit.assertTrue;
-
-import org.apache.axiom.om.OMAbstractFactory;
-import org.apache.axiom.om.OMElement;
-import org.apache.axiom.om.OMFactory;
-import org.apache.axiom.om.OMNamespace;
-import org.apache.axiom.om.OMText;
-import org.apache.axiom.om.util.Base64;
-
-import org.apache.ode.axis2.Axis2TestBase;
-import org.apache.ode.axis2.DummyService;
-import org.apache.ode.axis2.service.ServiceClientUtil;
-import org.apache.ode.tools.sendsoap.cline.HttpSoapSender;
-import org.apache.ode.utils.DOMUtils;
-import org.apache.ode.utils.Namespaces;
-
-import org.testng.annotations.AfterMethod;
-import org.testng.annotations.BeforeMethod;
-import org.testng.annotations.Test;
-import org.w3c.dom.Element;
-
-import java.io.ByteArrayOutputStream;
-import java.io.InputStream;
-
-import java.net.URL;
-
-import java.text.DateFormat;
-import java.text.SimpleDateFormat;
-
-import javax.xml.namespace.QName;
-
-
-/**
- * Test the limit on the number of process instances. 
- *
- * @author $author$
- * @version $Revision$
-  */
-public class ProcessSizeTest extends Axis2TestBase {
-    private OMFactory _factory;
-    private DateFormat xsdDF = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm");
-    private ServiceClientUtil _client;
-    private String _deployedName;
-
-    /**
-     * test case set up
-     *
-     * @throws Exception Exception 
-     */
-    @BeforeMethod
-    protected void setUp() throws Exception {
-        super.setUp();
-
-        // Create a factory
-        _factory = OMAbstractFactory.getOMFactory();
-        _client = new ServiceClientUtil();
-
-        // Just making sure the instance starts
-        Thread.sleep(1000);
-    }
-
-    /**
-     * test case tear down
-     *
-     * @throws Exception Exception 
-     */
-    @AfterMethod
-    protected void tearDown() throws Exception {
-        super.tearDown();
-    }
-    
-    /**
-     * Tests rendezvous
-     * 
-     * @throws Exception
-     */
-    String firstResponse, secondResponse;
-    boolean secondStarted;
-    String nsAttr;
-    
-    @Test(dataProvider="configs")
-    public void testCorrelationJoin() throws Exception {
-        final String bundleOne = "TestCorrelationJoin", bundleTwo = "TestAttributeNamespaces";
-        
-        firstResponse = secondResponse = null;
-        secondStarted = true;
-        
-        server.getODEServer().getBpelServer().setProcessThrottledMaximumSize(0);
-
-        // deploy the first service
-        server.deployService(DummyService.class.getCanonicalName());
-        if (server.isDeployed(bundleOne)) server.undeployProcess(bundleOne);
-        server.deployProcess(bundleOne);
-
-        Thread processOne = new Thread() {
-        	public void run() {
-                try {
-                    firstResponse = server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
-                            bundleOne, "testRequest.soap");
-                    System.out.println("=>\n" + firstResponse);
-                } catch (Exception e) {
-                    fail(e.getMessage());
-                }
-        	}
-        };
-        processOne.start();
-        processOne.join();
-        
-        try {
-	        processOne.join();        
-	        assertTrue(firstResponse.contains("tooHugeProcesses"), firstResponse);
-        } finally {
-	        server.undeployProcess(bundleOne);
-        }
-        
-    }
-
-    public String getODEConfigDir() {
-        return getClass().getClassLoader().getResource("webapp").getFile() + "/WEB-INF/conf.jpa-derby"; 
-    }    
-}
+package org.apache.ode.axis2.hydration;
+
+import static org.testng.Assert.assertTrue;
+import static org.testng.Assert.fail;
+import static org.testng.AssertJUnit.assertTrue;
+
+import org.apache.axiom.om.OMAbstractFactory;
+import org.apache.axiom.om.OMElement;
+import org.apache.axiom.om.OMFactory;
+import org.apache.axiom.om.OMNamespace;
+import org.apache.axiom.om.OMText;
+import org.apache.axiom.om.util.Base64;
+
+import org.apache.ode.axis2.Axis2TestBase;
+import org.apache.ode.axis2.DummyService;
+import org.apache.ode.axis2.service.ServiceClientUtil;
+import org.apache.ode.tools.sendsoap.cline.HttpSoapSender;
+import org.apache.ode.utils.DOMUtils;
+import org.apache.ode.utils.Namespaces;
+
+import org.testng.annotations.AfterMethod;
+import org.testng.annotations.BeforeMethod;
+import org.testng.annotations.Test;
+import org.w3c.dom.Element;
+
+import java.io.ByteArrayOutputStream;
+import java.io.InputStream;
+
+import java.net.URL;
+
+import java.text.DateFormat;
+import java.text.SimpleDateFormat;
+
+import javax.xml.namespace.QName;
+
+
+/**
+ * Test the limit on the number of process instances. 
+ *
+ * @author $author$
+ * @version $Revision$
+  */
+public class ProcessSizeTest extends Axis2TestBase {
+    private OMFactory _factory;
+    private DateFormat xsdDF = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm");
+    private ServiceClientUtil _client;
+    private String _deployedName;
+
+    /**
+     * test case set up
+     *
+     * @throws Exception Exception 
+     */
+    @BeforeMethod
+    protected void setUp() throws Exception {
+        super.setUp();
+
+        // Create a factory
+        _factory = OMAbstractFactory.getOMFactory();
+        _client = new ServiceClientUtil();
+
+        // Just making sure the instance starts
+        Thread.sleep(1000);
+    }
+
+    /**
+     * test case tear down
+     *
+     * @throws Exception Exception 
+     */
+    @AfterMethod
+    protected void tearDown() throws Exception {
+        super.tearDown();
+    }
+    
+    /**
+     * Tests rendezvous
+     * 
+     * @throws Exception
+     */
+    String firstResponse, secondResponse;
+    boolean secondStarted;
+    String nsAttr;
+    
+    @Test(dataProvider="configs")
+    public void testCorrelationJoin() throws Exception {
+        final String bundleOne = "TestCorrelationJoin", bundleTwo = "TestAttributeNamespaces";
+        
+        firstResponse = secondResponse = null;
+        secondStarted = true;
+        
+        server.getODEServer().getBpelServer().setProcessThrottledMaximumSize(0);
+
+        // deploy the first service
+        server.deployService(DummyService.class.getCanonicalName());
+        if (server.isDeployed(bundleOne)) server.undeployProcess(bundleOne);
+        server.deployProcess(bundleOne);
+
+        Thread processOne = new Thread() {
+        	public void run() {
+                try {
+                    firstResponse = server.sendRequestFile("http://localhost:8888/processes/correlationMultiTest",
+                            bundleOne, "testRequest.soap");
+                    System.out.println("=>\n" + firstResponse);
+                } catch (Exception e) {
+                    fail(e.getMessage());
+                }
+        	}
+        };
+        processOne.start();
+        processOne.join();
+        
+        try {
+	        processOne.join();        
+	        assertTrue(firstResponse.contains("tooHugeProcesses"), firstResponse);
+        } finally {
+	        server.undeployProcess(bundleOne);
+        }
+        
+    }
+
+    public String getODEConfigDir() {
+        return getClass().getClassLoader().getResource("webapp").getFile() + "/WEB-INF/conf.jpa-derby"; 
+    }    
+}

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/hydration/ProcessSizeTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/CleanFailureHibTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/CleanFailureTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/CleanFaultHibTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/CleanFaultTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/CleanSuccessHibTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/CleanSuccessTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/CleanTestBase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/HibDaoConnectionFactoryImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/JpaDaoConnectionFactoryImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/ProcessCronCleanupTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/ProfilingBpelDAOConnection.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/SystemCronCleanupTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/DeploymentTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/InstanceManagementTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/management/RetireTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/rampart/basic/SecuredProcessesTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/rampart/basic/SecuredServicesTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/rampart/policy/SecuredProcessesTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/rampart/policy/SecuredServicesTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessInstanceProfileDAO.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessProfileDAO.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/dao/ProcessInstanceProfileDAO.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/dao/ProcessProfileDAO.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/dao/jpa/ProcessInstanceProfileDAOImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/dao/jpa/ProcessProfileDAOImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/daohib/bpel/ProcessInstanceProfileDaoImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/daohib/bpel/ProcessProfileDaoImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/policy/sample01/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/policy/sample02/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/policy/sample03/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/policy/sample04/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/policy/sample05/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/sample02/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/sample03/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/sample04/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/sample05/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/sample06/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/sample07/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/sample08/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/sample09/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/rampart/samples/sample10/PWCBHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestAttributeNamespaces/HelloWorld2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestAttributeNamespaces/chooseLanguage.xsl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestAttributeNamespaces/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestAttributeNamespaces/language.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanCorrelation_None/TestCorrelation1.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanCorrelation_None/TestCorrelation1.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanCorrelation_None/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanCorrelation_None/test1.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanCorrelation_None/test2.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanCorrelation_None/test3.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFailure/FirstProcess-FirstProcess.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFailure/FirstProcess-FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFailure/FirstProcess.svg
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFailure/FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFailure/GetTime.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFailure/TimeService.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFailure/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_All/HelloWorld2.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_All/HelloWorld2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_All/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_All/dummy-service.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Correlations/HelloWorld2.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Correlations/HelloWorld2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Correlations/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Correlations/dummy-service.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Events/HelloWorld2.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Events/HelloWorld2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Events/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Events/dummy-service.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Instance/HelloWorld2.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Instance/HelloWorld2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Instance/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Instance/dummy-service.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/HelloWorld2.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/HelloWorld2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_MessageCorrEvents/dummy-service.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Messages/HelloWorld2.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Messages/HelloWorld2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Messages/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Messages/dummy-service.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_None/HelloWorld2.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_None/HelloWorld2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_None/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_None/dummy-service.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Variables/HelloWorld2.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Variables/HelloWorld2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Variables/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanFault_Variables/dummy-service.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_All/FirstProcess-FirstProcess.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_All/FirstProcess-FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_All/FirstProcess.svg
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_All/FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_All/GetTime.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_All/TimeService.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_All/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Correlations/FirstProcess-FirstProcess.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Correlations/FirstProcess-FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Correlations/FirstProcess.svg
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Correlations/FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Correlations/GetTime.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Correlations/TimeService.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Correlations/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Events/FirstProcess-FirstProcess.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Events/FirstProcess-FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Events/FirstProcess.svg
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Events/FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Events/GetTime.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Events/TimeService.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Events/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Fault/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Fault/test.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Fault/testFaultHandlers.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Fault/testFaultHandlers.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Instance/FirstProcess-FirstProcess.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Instance/FirstProcess-FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Instance/FirstProcess.svg
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Instance/FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Instance/GetTime.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Instance/TimeService.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Instance/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_MessageCorrEvents/FirstProcess-FirstProcess.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_MessageCorrEvents/FirstProcess-FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_MessageCorrEvents/FirstProcess.svg
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_MessageCorrEvents/FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_MessageCorrEvents/GetTime.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_MessageCorrEvents/TimeService.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_MessageCorrEvents/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Messages/FirstProcess-FirstProcess.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Messages/FirstProcess-FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Messages/FirstProcess.svg
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Messages/FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Messages/GetTime.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Messages/TimeService.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Messages/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_None/FirstProcess-FirstProcess.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_None/FirstProcess-FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_None/FirstProcess.svg
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_None/FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_None/GetTime.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_None/TimeService.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_None/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Variables/FirstProcess-FirstProcess.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Variables/FirstProcess-FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Variables/FirstProcess.svg
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Variables/FirstProcess.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Variables/GetTime.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Variables/TimeService.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCleanSuccess_Variables/deploy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCorrelationJoin/CorrelationMultiTest.bpel
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/axis2-war/src/test/resources/TestCorrelationJoin/CorrelationMultiTest.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native