Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPUtils.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPUtils.java	(revision 1914)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPUtils.java	(revision 1915)
@@ -133,7 +133,12 @@
      * @param sequence
      *            sequence where the events are replaced
+     * @param keepOnlySOAPEvents
+     *            if true, all events that are not of SOAPEventType or SimpleSOAPEventType are
+     *            removed
      * @return sequence with {@link SimpleSOAPEventType}s instead of {@link SOAPEventType}s
      */
-    public static List<Event> convertToSimpleSOAPEvent(List<Event> sequence) {
+    public static List<Event> convertToSimpleSOAPEvent(List<Event> sequence,
+                                                       boolean keepOnlySOAPEvents)
+    {
         List<Event> newSequence = null;
         if (sequence != null) {
@@ -147,5 +152,7 @@
                 }
                 else {
-                    newSequence.add(event);
+                    if (!keepOnlySOAPEvents || event.getType() instanceof SimpleSOAPEventType) {
+                        newSequence.add(event);
+                    }
                 }
             }
