Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SimpleSOAPEventType.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SimpleSOAPEventType.java	(revision 1641)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SimpleSOAPEventType.java	(revision 1642)
@@ -105,6 +105,6 @@
         }
         else if (obj instanceof SimpleSOAPEventType) {
-            return HTTPUtils.equals(calledMethod, ((SimpleSOAPEventType) obj).getCalledMethod()) &&
-                HTTPUtils.equals(serviceName, ((SimpleSOAPEventType) obj).getServiceName());
+            return HTTPUtils.equals(calledMethod, ((SimpleSOAPEventType) obj).calledMethod) &&
+                HTTPUtils.equals(serviceName, ((SimpleSOAPEventType) obj).serviceName);
         }
         else {
@@ -120,12 +120,14 @@
     @Override
     public int hashCode() {
-        int hashCode = super.hashCode();
-        if (calledMethod != null) {
-            hashCode += calledMethod.hashCode();
-        }
-        if (serviceName != null) {
-            hashCode += serviceName.hashCode();
-        }
+        int hashCode = calledMethod.hashCode() + serviceName.hashCode();
         return hashCode;
     }
+    
+    /* (non-Javadoc)
+     * @see java.lang.Object#toString()
+     */
+    @Override
+    public String toString() {
+        return "SimpleSOAPEventType(" + serviceName + ", " + calledMethod + ")";
+    }
 }
