Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SOAPEventType.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SOAPEventType.java	(revision 1599)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SOAPEventType.java	(revision 1600)
@@ -83,5 +83,5 @@
         this.soapRequest = soapRequest;
         this.soapResponse = soapResponse;
-        this.calledMethod = determineCalledMethod(exchange, soapRequest);
+        this.calledMethod = normalizeCalledMethod(determineCalledMethod(exchange, soapRequest));
         
         String path = null;
@@ -251,3 +251,18 @@
         return null;
     }
+    
+    /**
+     * removes unnecessary characters from the method name
+     */
+    private String normalizeCalledMethod(String calledMethod) {
+        if (calledMethod != null) {
+            if (calledMethod.startsWith("\"") && calledMethod.endsWith("\"")) {
+                calledMethod = calledMethod.substring(1, calledMethod.length() - 1);
+            }
+            if (calledMethod.startsWith("urn:")) {
+                calledMethod = calledMethod.substring(4);
+            }
+        }
+        return calledMethod;
+    }
 }
