Index: /trunk/autoquest-httpmonitor/src/main/java/de/ugoe/cs/autoquest/httpmonitor/HttpMonitorOutputWriter.java
===================================================================
--- /trunk/autoquest-httpmonitor/src/main/java/de/ugoe/cs/autoquest/httpmonitor/HttpMonitorOutputWriter.java	(revision 1443)
+++ /trunk/autoquest-httpmonitor/src/main/java/de/ugoe/cs/autoquest/httpmonitor/HttpMonitorOutputWriter.java	(revision 1444)
@@ -253,5 +253,6 @@
         outputWriter = new PrintWriter(new OutputStreamWriter(fis, "UTF-8"));
         outputWriter.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
-        outputWriter.println("<session xmlns=\"http://autoquest.informatik.uni-goettingen.de\" >");
+        outputWriter.println
+            ("<session xmlns=\"http://autoquest.informatik.uni-goettingen.de/httpsession\" >");
     }
 
Index: /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/isMonitorRunning.sh
===================================================================
--- /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/isMonitorRunning.sh	(revision 1444)
+++ /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/isMonitorRunning.sh	(revision 1444)
@@ -0,0 +1,37 @@
+#!/bin/bash
+
+#   Copyright 2012 Georg-August-Universit�t G�ttingen, Germany
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+
+
+# This script checks if the autoquest-httpmonitor, which is in the same folder as
+# this script, is running
+
+
+# Absolute path to this script, e.g. /home/user/bin/stop.sh
+SCRIPT=$(readlink -f $0)
+
+# Find the autoquest-httpmonitor JAR-File and start in the folder of this script
+JAR_FILE=`find $(dirname $SCRIPT) -type f -name 'autoquest-httpmonitor-*.jar'`
+
+# Get the ProcessID of the autoquest-httpmonitor which is in the same folder as this script
+PID=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | grep ' monitor ' | awk '{print $1}')
+
+if [ -z "$PID" ]; then
+  echo "autoquest-httpmonitor is not running"
+else
+  echo "autoquest-httpmonitor is running with PID: $PID"
+fi
+
Index: /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/isProxyRunning.sh
===================================================================
--- /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/isProxyRunning.sh	(revision 1444)
+++ /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/isProxyRunning.sh	(revision 1444)
@@ -0,0 +1,37 @@
+#!/bin/bash
+
+#   Copyright 2012 Georg-August-Universit�t G�ttingen, Germany
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+
+
+# This script checks if the autoquest-httpmonitoring proxy, which is in the same folder as
+# this script, is running
+
+
+# Absolute path to this script, e.g. /home/user/bin/stop.sh
+SCRIPT=$(readlink -f $0)
+
+# Find the autoquest-httpmonitor JAR-File and start in the folder of this script
+JAR_FILE=`find $(dirname $SCRIPT) -type f -name 'autoquest-httpmonitor-*.jar'`
+
+# Get the ProcessID of the autoquest-httpmonitor which is in the same folder as this script
+PID=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | grep ' proxy ' | awk '{print $1}')
+
+if [ -z "$PID" ]; then
+  echo "autoquest-httpmonitoring proxy is not running"
+else
+  echo "autoquest-httpmonitoring proxy is running with PID: $PID"
+fi
+
Index: /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/runMonitor.sh
===================================================================
--- /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/runMonitor.sh	(revision 1444)
+++ /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/runMonitor.sh	(revision 1444)
@@ -0,0 +1,165 @@
+#!/bin/sh
+#   Copyright 2012 Georg-August-Universit�t G�ttingen, Germany
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+
+
+# This script starts the autoquest-httpmonitor which is in the same folder as
+# this script
+
+# Absolute path to this script, e.g. /home/user/bin/foo.sh
+SCRIPT=$(readlink -f $0)
+
+# Find the autoquest-httpmonitor JAR-File and start in the folder of this script
+JAR_FILE=`find $(dirname $SCRIPT) -type f -name 'autoquest-httpmonitor-*.jar'`
+
+# Get the ProcessID of the autoquest-httpmonitor which is in the same folder as this script
+PID=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | grep ' monitor ' | awk '{print $1 " " $7}')
+
+
+# Check if this autoquest-httpmonitor is already running
+if [ ! -z "$PID" ]; then
+  echo "autoquest-httpmonitor is already running with PID:$PID"
+  exit 1
+fi
+
+
+
+HOME_DIR=`dirname $0`
+
+# Given the "java" executable as an argument, find JAVA_HOME
+find_java() {
+  # First check if it is a JDK in the /usr/lib/jvm directory, or a symlink there.
+  # The test is somewhat complicated due to the different ways the Java implementations
+  # are set up with the alternatives system
+  # e.g.
+  #  /usr/bin/java -> /etc/alternatives/java -> /usr/lib/jvm/java-1.5.0-sun/jre/bin/java
+  # or
+  #  /usr/bin/java -> /etc/alternatives/java -> /usr/lib/jvm/java-gcj/bin/java -> /usr/bin/gij-4.2
+
+  JAVA_HOME=$1
+  while true ; do
+    case $JAVA_HOME in
+      /usr/lib/jvm/*)
+        # Found it! Return the correct paremt directory.
+
+        JAVA_HOME=`echo $JAVA_HOME | sed 's:\(/usr/lib/jvm/[^/]*\).*:\1:'`
+	return
+	;;
+      *) ;;
+    esac
+
+    if [ -h $JAVA_HOME ] ; then
+      JAVA_HOME=`readlink $JAVA_HOME`
+    else
+      break
+    fi
+  done
+        
+  # Not found in the Debian alternatives system, so presumably
+  # it is a user-installed JDK/JRE. Might as well be helpful
+  # and try to find JAVA_HOME.
+
+  # First try for a JDK:
+  JAVA_HOME=`readlink -e $1`
+  while [ `dirname $JAVA_HOME` != /  ]; do
+    if [ -e $JAVA_HOME/lib/tools.jar ]; then
+      return
+    fi
+
+    JAVA_HOME=`dirname $JAVA_HOME`
+  done
+
+  # If we get here we did not find a JDK. Search again for a JRE:
+  JAVA_HOME=`readlink -e $1`
+  while [ `dirname $JAVA_HOME` != /  ]; do
+    if [ -e $JAVA_HOME/bin/java ]; then
+      return
+    fi
+
+    JAVA_HOME=`dirname $JAVA_HOME`
+  done
+
+  # Nothing found; leave blank
+  JAVA_HOME=
+}
+
+if [ -z "$JAVA_HOME" ] ; then
+  if [ -r /etc/gentoo-release ] ; then
+    JAVA_HOME=`java-config --jre-home`
+  else
+    # Debian patch - search for preferred JRE
+    if [ -n "$JAVACMD" ] ; then
+      find_java "$JAVACMD"
+    else
+      find_java `which java`
+    fi
+  fi
+fi
+
+if [ -z "$JAVACMD" ] ; then
+  if [ -n "$JAVA_HOME"  ] ; then
+    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+      # IBM's JDK on AIX uses strange locations for the executables
+      JAVACMD="$JAVA_HOME/jre/sh/java"
+    else
+      JAVACMD="$JAVA_HOME/bin/java"
+    fi
+  else
+    JAVACMD="`which java`"
+  fi
+fi
+
+if [ ! -x "$JAVACMD" ] ; then
+  echo "Error: JAVA_HOME is not defined correctly."
+  echo "  We cannot execute $JAVACMD"
+  exit 1
+fi
+
+if [ -z "$JAVA_HOME" ] ; then
+  echo "Warning: JAVA_HOME environment variable is not set."
+fi
+
+cd ${HOME_DIR}
+
+
+if [ ! -f "$JAR_FILE" ] ; then
+  echo "Error: Could not find executable jar file in distribution."
+  echo "  Execution aborted."
+  exit 1
+fi
+
+# ./log is the standard log file. If this folder does not exist
+# create it
+if [ ! -d "./log" ] ; then
+   mkdir "./log"
+fi
+LOGDIR="./log"
+echo "Using LogDir ./log"
+
+
+# Every output from the JAR File will be saved in the Console.log
+# &1 is stdout, &2 is stderr
+echo "Starting autoquest-httpmonitor"
+exec 3>&1 4>&2 >>"$LOGDIR"/console-monitor.log 2>&1
+
+echo ""
+echo "starting HTML monitor"
+date
+echo "using java $JAVACMD"
+
+$JAVACMD -jar ${JAR_FILE} monitor $LOGDIR $1 $2 2>&1 >> "$LOGDIR"/console-monitor.log &
+
+# restore stdout and stderr
+exec 1>&3 2>&4
Index: /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/runProxy.sh
===================================================================
--- /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/runProxy.sh	(revision 1444)
+++ /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/runProxy.sh	(revision 1444)
@@ -0,0 +1,165 @@
+#!/bin/sh
+#   Copyright 2012 Georg-August-Universit�t G�ttingen, Germany
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+
+
+# This script starts the autoquest-httpmonitoring proxy which is in the same folder as
+# this script
+
+# Absolute path to this script, e.g. /home/user/bin/foo.sh
+SCRIPT=$(readlink -f $0)
+
+# Find the autoquest-httpmonitor JAR-File and start in the folder of this script
+JAR_FILE=`find $(dirname $SCRIPT) -type f -name 'autoquest-httpmonitor-*.jar'`
+
+# Get the ProcessID of the autoquest-httpmonitoring proxy which is in the same folder as this script
+PID=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | grep ' proxy ' | awk '{print $1 " " $7}')
+
+
+# Check if this autoquest-httpmonitoring proxy is already running
+if [ ! -z "$PID" ]; then
+  echo "autoquest-httpmonitoring proxy is already running with PID:$PID"
+  exit 1
+fi
+
+
+
+HOME_DIR=`dirname $0`
+
+# Given the "java" executable as an argument, find JAVA_HOME
+find_java() {
+  # First check if it is a JDK in the /usr/lib/jvm directory, or a symlink there.
+  # The test is somewhat complicated due to the different ways the Java implementations
+  # are set up with the alternatives system
+  # e.g.
+  #  /usr/bin/java -> /etc/alternatives/java -> /usr/lib/jvm/java-1.5.0-sun/jre/bin/java
+  # or
+  #  /usr/bin/java -> /etc/alternatives/java -> /usr/lib/jvm/java-gcj/bin/java -> /usr/bin/gij-4.2
+
+  JAVA_HOME=$1
+  while true ; do
+    case $JAVA_HOME in
+      /usr/lib/jvm/*)
+        # Found it! Return the correct paremt directory.
+
+        JAVA_HOME=`echo $JAVA_HOME | sed 's:\(/usr/lib/jvm/[^/]*\).*:\1:'`
+	return
+	;;
+      *) ;;
+    esac
+
+    if [ -h $JAVA_HOME ] ; then
+      JAVA_HOME=`readlink $JAVA_HOME`
+    else
+      break
+    fi
+  done
+        
+  # Not found in the Debian alternatives system, so presumably
+  # it is a user-installed JDK/JRE. Might as well be helpful
+  # and try to find JAVA_HOME.
+
+  # First try for a JDK:
+  JAVA_HOME=`readlink -e $1`
+  while [ `dirname $JAVA_HOME` != /  ]; do
+    if [ -e $JAVA_HOME/lib/tools.jar ]; then
+      return
+    fi
+
+    JAVA_HOME=`dirname $JAVA_HOME`
+  done
+
+  # If we get here we did not find a JDK. Search again for a JRE:
+  JAVA_HOME=`readlink -e $1`
+  while [ `dirname $JAVA_HOME` != /  ]; do
+    if [ -e $JAVA_HOME/bin/java ]; then
+      return
+    fi
+
+    JAVA_HOME=`dirname $JAVA_HOME`
+  done
+
+  # Nothing found; leave blank
+  JAVA_HOME=
+}
+
+if [ -z "$JAVA_HOME" ] ; then
+  if [ -r /etc/gentoo-release ] ; then
+    JAVA_HOME=`java-config --jre-home`
+  else
+    # Debian patch - search for preferred JRE
+    if [ -n "$JAVACMD" ] ; then
+      find_java "$JAVACMD"
+    else
+      find_java `which java`
+    fi
+  fi
+fi
+
+if [ -z "$JAVACMD" ] ; then
+  if [ -n "$JAVA_HOME"  ] ; then
+    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+      # IBM's JDK on AIX uses strange locations for the executables
+      JAVACMD="$JAVA_HOME/jre/sh/java"
+    else
+      JAVACMD="$JAVA_HOME/bin/java"
+    fi
+  else
+    JAVACMD="`which java`"
+  fi
+fi
+
+if [ ! -x "$JAVACMD" ] ; then
+  echo "Error: JAVA_HOME is not defined correctly."
+  echo "  We cannot execute $JAVACMD"
+  exit 1
+fi
+
+if [ -z "$JAVA_HOME" ] ; then
+  echo "Warning: JAVA_HOME environment variable is not set."
+fi
+
+cd ${HOME_DIR}
+
+
+if [ ! -f "$JAR_FILE" ] ; then
+  echo "Error: Could not find executable jar file in distribution."
+  echo "  Execution aborted."
+  exit 1
+fi
+
+# ./log is the standard log file. If this folder does not exist
+# create it
+if [ ! -d "./log" ] ; then
+   mkdir "./log"
+fi
+LOGDIR="./log"
+echo "Using LogDir ./log"
+
+
+# Every output from the JAR File will be saved in the Console.log
+# &1 is stdout, &2 is stderr
+echo "Starting autoquest-httpmonitoring proxy"
+exec 3>&1 4>&2 >>"$LOGDIR"/console-proxy.log 2>&1
+
+echo ""
+echo "starting HTML monitoring proxy"
+date
+echo "using java $JAVACMD"
+
+$JAVACMD -jar ${JAR_FILE} proxy $LOGDIR $1 $2 $3 2>&1 >> "$LOGDIR"/console-proxy.log &
+
+# restore stdout and stderr
+exec 1>&3 2>&4
Index: /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/stopMonitor.sh
===================================================================
--- /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/stopMonitor.sh	(revision 1444)
+++ /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/stopMonitor.sh	(revision 1444)
@@ -0,0 +1,45 @@
+#!/bin/sh
+
+#   Copyright 2012 Georg-August-Universit�t G�ttingen, Germany
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+
+
+# This script stops the autoquest-httpmonitor which is in the same folder as
+# this script
+
+
+# Absolute path to this script, e.g. /home/user/bin/stop.sh
+SCRIPT=$(readlink -f $0)
+
+# Find the autoquest-httpmonitor JAR-File and start in the Folder of this Script
+JAR_FILE=`find $(dirname $SCRIPT) -type f -name 'autoquest-httpmonitor-*.jar'`
+
+# Get the ProcessID of the autoquest-httpmonitor which is in the same folder as this script
+PID=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | grep ' monitor ' | awk '{print $1}')
+
+if [ -z "$PID" ]; then
+  echo autoquest-httpmonitor is not running
+else
+  #Kill this autoquest-httpmonitor-process
+  kill "$PID"
+  sleep 2
+  # Check if Process is no more
+  CHECK=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | grep ' monitor ' | awk '{print $1}')
+  if [ ! -z "$CHECK" ]; then
+	kill -9 "$CHECK"
+  fi
+  echo autoquest-httpmonitor stopped
+fi
+
Index: /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/stopProxy.sh
===================================================================
--- /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/stopProxy.sh	(revision 1444)
+++ /trunk/autoquest-httpmonitor/target/autoquest-httpmonitor-0.0.1-SNAPSHOT-bin.dir/autoquest-httpmonitor-0.0.1-SNAPSHOT/stopProxy.sh	(revision 1444)
@@ -0,0 +1,45 @@
+#!/bin/sh
+
+#   Copyright 2012 Georg-August-Universit�t G�ttingen, Germany
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+
+
+# This script stops the autoquest-httpmonitor which is in the same folder as
+# this script
+
+
+# Absolute path to this script, e.g. /home/user/bin/stop.sh
+SCRIPT=$(readlink -f $0)
+
+# Find the autoquest-httpmonitor JAR-File and start in the Folder of this Script
+JAR_FILE=`find $(dirname $SCRIPT) -type f -name 'autoquest-httpmonitor-*.jar'`
+
+# Get the ProcessID of the autoquest-httpmonitor which is in the same folder as this script
+PID=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | grep ' proxy ' | awk '{print $1}')
+
+if [ -z "$PID" ]; then
+  echo autoquest-httpmonitoring proxy is not running
+else
+  #Kill this autoquest-httpmonitor-process
+  kill "$PID"
+  sleep 2
+  # Check if Process is no more
+  CHECK=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | grep ' proxy ' | awk '{print $1}')
+  if [ ! -z "$CHECK" ]; then
+	kill -9 "$CHECK"
+  fi
+  echo autoquest-httpmonitoring proxy stopped
+fi
+
Index: /trunk/autoquest-httpmonitor/target/maven-archiver/pom.properties
===================================================================
--- /trunk/autoquest-httpmonitor/target/maven-archiver/pom.properties	(revision 1444)
+++ /trunk/autoquest-httpmonitor/target/maven-archiver/pom.properties	(revision 1444)
@@ -0,0 +1,5 @@
+#Generated by Maven
+#Wed Mar 05 11:46:45 CET 2014
+version=0.0.1-SNAPSHOT
+groupId=de.ugoe.cs.autoquest
+artifactId=autoquest-httpmonitor
Index: /trunk/autoquest-plugin-http-test/src/test/resources/httpmonitor_testtrace_1.xml
===================================================================
--- /trunk/autoquest-plugin-http-test/src/test/resources/httpmonitor_testtrace_1.xml	(revision 1443)
+++ /trunk/autoquest-plugin-http-test/src/test/resources/httpmonitor_testtrace_1.xml	(revision 1444)
@@ -1,2881 +1,2881 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<session xmlns="http://autoquest.informatik.uni-goettingen.de" >
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="7584"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.omg.org/spec/IXS/201212" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://www.omg.org/spec/IXS/201212" name="POCDPatientMQService"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/IXS/201212" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="getEntityTraitValues"&gt;&lt;part name="parameters" element="tns:getEntityTraitValues"/&gt;&lt;/message&gt;&lt;message name="getEntityTraitValuesResponse"&gt;&lt;part name="parameters" element="tns:getEntityTraitValuesResponse"/&gt;&lt;/message&gt;&lt;message name="findIdentitiesByTraits"&gt;&lt;part name="parameters" element="tns:findIdentitiesByTraits"/&gt;&lt;/message&gt;&lt;message name="findIdentitiesByTraitsResponse"&gt;&lt;part name="parameters" element="tns:findIdentitiesByTraitsResponse"/&gt;&lt;/message&gt;&lt;message name="createIdentityFromEntity"&gt;&lt;part name="parameters" element="tns:createIdentityFromEntity"/&gt;&lt;/message&gt;&lt;message name="createIdentityFromEntityResponse"&gt;&lt;part name="parameters" element="tns:createIdentityFromEntityResponse"/&gt;&lt;/message&gt;&lt;message name="updateEntityTraitValues"&gt;&lt;part name="parameters" element="tns:updateEntityTraitValues"/&gt;&lt;/message&gt;&lt;message name="updateEntityTraitValuesResponse"&gt;&lt;part name="parameters" element="tns:updateEntityTraitValuesResponse"/&gt;&lt;/message&gt;&lt;message name="registerEntityWithIdentity"&gt;&lt;part name="parameters" element="tns:registerEntityWithIdentity"/&gt;&lt;/message&gt;&lt;message name="registerEntityWithIdentityResponse"&gt;&lt;part name="parameters" element="tns:registerEntityWithIdentityResponse"/&gt;&lt;/message&gt;&lt;message name="removeIdentity"&gt;&lt;part name="parameters" element="tns:removeIdentity"/&gt;&lt;/message&gt;&lt;message name="removeIdentityResponse"&gt;&lt;part name="parameters" element="tns:removeIdentityResponse"/&gt;&lt;/message&gt;&lt;message name="listLinkedIdentities"&gt;&lt;part name="parameters" element="tns:listLinkedIdentities"/&gt;&lt;/message&gt;&lt;message name="listLinkedIdentitiesResponse"&gt;&lt;part name="parameters" element="tns:listLinkedIdentitiesResponse"/&gt;&lt;/message&gt;&lt;message name="listUnlinkedIdentities"&gt;&lt;part name="parameters" element="tns:listUnlinkedIdentities"/&gt;&lt;/message&gt;&lt;message name="listUnlinkedIdentitiesResponse"&gt;&lt;part name="parameters" element="tns:listUnlinkedIdentitiesResponse"/&gt;&lt;/message&gt;&lt;portType name="IXSMgmtAndQueryInterface"&gt;&lt;operation name="getEntityTraitValues"&gt;&lt;input wsam:Action="urn:getEntityTraitValues" message="tns:getEntityTraitValues"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/getEntityTraitValuesResponse" message="tns:getEntityTraitValuesResponse"/&gt;&lt;/operation&gt;&lt;operation name="findIdentitiesByTraits"&gt;&lt;input wsam:Action="urn:findIdentitiesByTraits" message="tns:findIdentitiesByTraits"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/findIdentitiesByTraitsResponse" message="tns:findIdentitiesByTraitsResponse"/&gt;&lt;/operation&gt;&lt;operation name="createIdentityFromEntity"&gt;&lt;input wsam:Action="urn:createIdentityFromEntity" message="tns:createIdentityFromEntity"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/createIdentityFromEntityResponse" message="tns:createIdentityFromEntityResponse"/&gt;&lt;/operation&gt;&lt;operation name="updateEntityTraitValues"&gt;&lt;input wsam:Action="urn:updateEntityTraitValues" message="tns:updateEntityTraitValues"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/updateEntityTraitValuesResponse" message="tns:updateEntityTraitValuesResponse"/&gt;&lt;/operation&gt;&lt;operation name="registerEntityWithIdentity"&gt;&lt;input wsam:Action="urn:registerEntityWithIdentity" message="tns:registerEntityWithIdentity"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/registerEntityWithIdentityResponse" message="tns:registerEntityWithIdentityResponse"/&gt;&lt;/operation&gt;&lt;operation name="removeIdentity"&gt;&lt;input wsam:Action="urn:removeIdentity" message="tns:removeIdentity"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/removeIdentityResponse" message="tns:removeIdentityResponse"/&gt;&lt;/operation&gt;&lt;operation name="listLinkedIdentities"&gt;&lt;input wsam:Action="urn:listLinkedIdentities" message="tns:listLinkedIdentities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/listLinkedIdentitiesResponse" message="tns:listLinkedIdentitiesResponse"/&gt;&lt;/operation&gt;&lt;operation name="listUnlinkedIdentities"&gt;&lt;input wsam:Action="urn:listUnlinkedIdentities" message="tns:listUnlinkedIdentities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/listUnlinkedIdentitiesResponse" message="tns:listUnlinkedIdentitiesResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="POCDPatientMQServicePortBinding" type="tns:IXSMgmtAndQueryInterface"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="getEntityTraitValues"&gt;&lt;soap:operation soapAction="urn:getEntityTraitValues"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="findIdentitiesByTraits"&gt;&lt;soap:operation soapAction="urn:findIdentitiesByTraits"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="createIdentityFromEntity"&gt;&lt;soap:operation soapAction="urn:createIdentityFromEntity"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="updateEntityTraitValues"&gt;&lt;soap:operation soapAction="urn:updateEntityTraitValues"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="registerEntityWithIdentity"&gt;&lt;soap:operation soapAction="urn:registerEntityWithIdentity"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="removeIdentity"&gt;&lt;soap:operation soapAction="urn:removeIdentity"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="listLinkedIdentities"&gt;&lt;soap:operation soapAction="urn:listLinkedIdentities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="listUnlinkedIdentities"&gt;&lt;soap:operation soapAction="urn:listUnlinkedIdentities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="POCDPatientMQService"&gt;&lt;port name="POCDPatientMQServicePort" binding="tns:POCDPatientMQServicePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="4187"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.omg.org/spec/IXS/201212" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://www.omg.org/spec/IXS/201212" name="IXS"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/IXS/201212" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="linkEntities"&gt;&lt;part name="parameters" element="tns:linkEntities"/&gt;&lt;/message&gt;&lt;message name="linkEntitiesResponse"&gt;&lt;part name="parameters" element="tns:linkEntitiesResponse"/&gt;&lt;/message&gt;&lt;message name="unlinkEntities"&gt;&lt;part name="parameters" element="tns:unlinkEntities"/&gt;&lt;/message&gt;&lt;message name="unlinkEntitiesResponse"&gt;&lt;part name="parameters" element="tns:unlinkEntitiesResponse"/&gt;&lt;/message&gt;&lt;message name="mergeEntities"&gt;&lt;part name="parameters" element="tns:mergeEntities"/&gt;&lt;/message&gt;&lt;message name="mergeEntitiesResponse"&gt;&lt;part name="parameters" element="tns:mergeEntitiesResponse"/&gt;&lt;/message&gt;&lt;message name="unMergeEntities"&gt;&lt;part name="parameters" element="tns:unMergeEntities"/&gt;&lt;/message&gt;&lt;message name="unMergeEntitiesResponse"&gt;&lt;part name="parameters" element="tns:unMergeEntitiesResponse"/&gt;&lt;/message&gt;&lt;portType name="IXSAdminEditorInterface"&gt;&lt;operation name="linkEntities"&gt;&lt;input wsam:Action="urn:linkEntities" message="tns:linkEntities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSAdminEditorInterface/linkEntitiesResponse" message="tns:linkEntitiesResponse"/&gt;&lt;/operation&gt;&lt;operation name="unlinkEntities"&gt;&lt;input wsam:Action="urn:unlinkEntities" message="tns:unlinkEntities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSAdminEditorInterface/unlinkEntitiesResponse" message="tns:unlinkEntitiesResponse"/&gt;&lt;/operation&gt;&lt;operation name="mergeEntities"&gt;&lt;input wsam:Action="urn:mergeEntities" message="tns:mergeEntities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSAdminEditorInterface/mergeEntitiesResponse" message="tns:mergeEntitiesResponse"/&gt;&lt;/operation&gt;&lt;operation name="unMergeEntities"&gt;&lt;input wsam:Action="urn:unMergeEntities" message="tns:unMergeEntities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSAdminEditorInterface/unMergeEntitiesResponse" message="tns:unMergeEntitiesResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="IXSAdminEditorInterfacePortBinding" type="tns:IXSAdminEditorInterface"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="linkEntities"&gt;&lt;soap:operation soapAction="urn:linkEntities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="unlinkEntities"&gt;&lt;soap:operation soapAction="urn:unlinkEntities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="mergeEntities"&gt;&lt;soap:operation soapAction="urn:mergeEntities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="unMergeEntities"&gt;&lt;soap:operation soapAction="urn:unMergeEntities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="IXS"&gt;&lt;port name="IXSAdminEditorInterfacePort" binding="tns:IXSAdminEditorInterfacePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6217"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:dedalus:rlus:notes" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:dedalus:rlus:notes" name="RLPNotesService"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:dedalus:rlus:notes" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:dedalus:rlp" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService?xsd=3"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUStypes" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService?xsd=4"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUSexpression" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService?xsd=5"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="get"&gt;&lt;part xmlns:ns1="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="request" element="ns1:RLUSSearchStruct"/&gt;&lt;/message&gt;&lt;message name="getResponse"&gt;&lt;part name="response" element="tns:GetResponse"/&gt;&lt;/message&gt;&lt;message name="put"&gt;&lt;part name="request" element="tns:PutRequest"/&gt;&lt;/message&gt;&lt;message name="putResponse"&gt;&lt;part xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns2:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="initialize"&gt;&lt;part name="request" element="tns:InitializeRequest"/&gt;&lt;/message&gt;&lt;message name="initializeResponse"&gt;&lt;part xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns3:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="list"&gt;&lt;part name="request" element="tns:ListRequest"/&gt;&lt;/message&gt;&lt;message name="listResponse"&gt;&lt;part name="response" element="tns:ListResponse"/&gt;&lt;/message&gt;&lt;message name="locate"&gt;&lt;part name="request" element="tns:LocateRequest"/&gt;&lt;/message&gt;&lt;message name="locateResponse"&gt;&lt;part name="response" element="tns:LocateResponse"/&gt;&lt;/message&gt;&lt;message name="discard"&gt;&lt;part name="request" element="tns:DiscardRequest"/&gt;&lt;/message&gt;&lt;message name="discardResponse"&gt;&lt;part xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns4:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="describe"&gt;&lt;part name="request" element="tns:semantic-signifierName"/&gt;&lt;/message&gt;&lt;message name="describeResponse"&gt;&lt;part name="response" element="tns:DescribeResponse"/&gt;&lt;/message&gt;&lt;portType name="RLUSNotesPortType"&gt;&lt;operation name="get"&gt;&lt;input wsam:Action="urn:get" message="tns:get"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:getResponse" message="tns:getResponse"/&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;input wsam:Action="urn:put" message="tns:put"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:putResponse" message="tns:putResponse"/&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;input wsam:Action="urn:initialize" message="tns:initialize"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:initializeResponse" message="tns:initializeResponse"/&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;input wsam:Action="urn:list" message="tns:list"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:listResponse" message="tns:listResponse"/&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;input wsam:Action="urn:locate" message="tns:locate"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:locateResponse" message="tns:locateResponse"/&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;input wsam:Action="urn:discard" message="tns:discard"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:discardResponse" message="tns:discardResponse"/&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;input wsam:Action="urn:describe" message="tns:describe"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:describeResponse" message="tns:describeResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="RLPNotesServicePortBinding" type="tns:RLUSNotesPortType"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="get"&gt;&lt;soap:operation soapAction="urn:get"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;soap:operation soapAction="urn:put"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;soap:operation soapAction="urn:initialize"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;soap:operation soapAction="urn:list"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;soap:operation soapAction="urn:locate"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;soap:operation soapAction="urn:discard"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;soap:operation soapAction="urn:describe"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="RLPNotesService"&gt;&lt;port name="RLPNotesServicePort" binding="tns:RLPNotesServicePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6328"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:dedalus:rlus:xthm" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:dedalus:rlus:xthm" name="XTHMService"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:ihe:iti:2011:xdw" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:dedalus:rlus:xthm" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=3"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUStypes" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=4"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUSexpression" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=5"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=6"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="get"&gt;&lt;part xmlns:ns1="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="request" element="ns1:RLUSSearchStruct"/&gt;&lt;/message&gt;&lt;message name="getResponse"&gt;&lt;part name="response" element="tns:GetResponse"/&gt;&lt;/message&gt;&lt;message name="put"&gt;&lt;part name="request" element="tns:PutRequest"/&gt;&lt;/message&gt;&lt;message name="putResponse"&gt;&lt;part xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns2:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="initialize"&gt;&lt;part name="request" element="tns:InitializeRequest"/&gt;&lt;/message&gt;&lt;message name="initializeResponse"&gt;&lt;part xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns3:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="list"&gt;&lt;part name="request" element="tns:ListRequest"/&gt;&lt;/message&gt;&lt;message name="listResponse"&gt;&lt;part name="response" element="tns:ListResponse"/&gt;&lt;/message&gt;&lt;message name="locate"&gt;&lt;part name="request" element="tns:LocateRequest"/&gt;&lt;/message&gt;&lt;message name="locateResponse"&gt;&lt;part name="response" element="tns:LocateResponse"/&gt;&lt;/message&gt;&lt;message name="discard"&gt;&lt;part name="request" element="tns:DiscardRequest"/&gt;&lt;/message&gt;&lt;message name="discardResponse"&gt;&lt;part xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns4:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="describe"&gt;&lt;part name="request" element="tns:semantic-signifierName"/&gt;&lt;/message&gt;&lt;message name="describeResponse"&gt;&lt;part name="response" element="tns:DescribeResponse"/&gt;&lt;/message&gt;&lt;portType name="XTHMPortType"&gt;&lt;operation name="get"&gt;&lt;input wsam:Action="urn:get" message="tns:get"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:getResponse" message="tns:getResponse"/&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;input wsam:Action="urn:put" message="tns:put"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:putResponse" message="tns:putResponse"/&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;input wsam:Action="urn:initialize" message="tns:initialize"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:initializeResponse" message="tns:initializeResponse"/&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;input wsam:Action="urn:list" message="tns:list"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:listResponse" message="tns:listResponse"/&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;input wsam:Action="urn:locate" message="tns:locate"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:locateResponse" message="tns:locateResponse"/&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;input wsam:Action="urn:discard" message="tns:discard"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:discardResponse" message="tns:discardResponse"/&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;input wsam:Action="urn:describe" message="tns:describe"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:describeResponse" message="tns:describeResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="XTHMServicePortBinding" type="tns:XTHMPortType"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="get"&gt;&lt;soap:operation soapAction="urn:get"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;soap:operation soapAction="urn:put"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;soap:operation soapAction="urn:initialize"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;soap:operation soapAction="urn:list"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;soap:operation soapAction="urn:locate"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;soap:operation soapAction="urn:discard"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;soap:operation soapAction="urn:describe"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="XTHMService"&gt;&lt;port name="XTHMServicePort" binding="tns:XTHMServicePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6297"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:dedalus:rlus:xdw" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:dedalus:rlus:xdw" name="XDWService"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:ihe:iti:2011:xdw" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:dedalus:rlus:xdw" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=3"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUStypes" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=4"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUSexpression" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=5"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=6"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="get"&gt;&lt;part xmlns:ns1="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="request" element="ns1:RLUSSearchStruct"/&gt;&lt;/message&gt;&lt;message name="getResponse"&gt;&lt;part name="response" element="tns:GetResponse"/&gt;&lt;/message&gt;&lt;message name="put"&gt;&lt;part name="request" element="tns:PutRequest"/&gt;&lt;/message&gt;&lt;message name="putResponse"&gt;&lt;part xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns2:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="initialize"&gt;&lt;part name="request" element="tns:InitializeRequest"/&gt;&lt;/message&gt;&lt;message name="initializeResponse"&gt;&lt;part xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns3:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="list"&gt;&lt;part name="request" element="tns:ListRequest"/&gt;&lt;/message&gt;&lt;message name="listResponse"&gt;&lt;part name="response" element="tns:ListResponse"/&gt;&lt;/message&gt;&lt;message name="locate"&gt;&lt;part name="request" element="tns:LocateRequest"/&gt;&lt;/message&gt;&lt;message name="locateResponse"&gt;&lt;part name="response" element="tns:LocateResponse"/&gt;&lt;/message&gt;&lt;message name="discard"&gt;&lt;part name="request" element="tns:DiscardRequest"/&gt;&lt;/message&gt;&lt;message name="discardResponse"&gt;&lt;part xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns4:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="describe"&gt;&lt;part name="request" element="tns:semantic-signifierName"/&gt;&lt;/message&gt;&lt;message name="describeResponse"&gt;&lt;part name="response" element="tns:DescribeResponse"/&gt;&lt;/message&gt;&lt;portType name="XDWPortType"&gt;&lt;operation name="get"&gt;&lt;input wsam:Action="urn:get" message="tns:get"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:getResponse" message="tns:getResponse"/&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;input wsam:Action="urn:put" message="tns:put"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:putResponse" message="tns:putResponse"/&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;input wsam:Action="urn:initialize" message="tns:initialize"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:initializeResponse" message="tns:initializeResponse"/&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;input wsam:Action="urn:list" message="tns:list"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:listResponse" message="tns:listResponse"/&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;input wsam:Action="urn:locate" message="tns:locate"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:locateResponse" message="tns:locateResponse"/&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;input wsam:Action="urn:discard" message="tns:discard"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:discardResponse" message="tns:discardResponse"/&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;input wsam:Action="urn:describe" message="tns:describe"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:describeResponse" message="tns:describeResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="XDWServicePortBinding" type="tns:XDWPortType"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="get"&gt;&lt;soap:operation soapAction="urn:get"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;soap:operation soapAction="urn:put"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;soap:operation soapAction="urn:initialize"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;soap:operation soapAction="urn:list"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;soap:operation soapAction="urn:locate"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;soap:operation soapAction="urn:discard"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;soap:operation soapAction="urn:describe"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="XDWService"&gt;&lt;port name="XDWServicePort" binding="tns:XDWServicePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6085"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:dedalus:rlus:cda2report" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:dedalus:rlus:cda2report" name="CDA2ReportService"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:dedalus:rlus:cda2report" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUStypes" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService?xsd=3"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUSexpression" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService?xsd=4"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="get"&gt;&lt;part xmlns:ns1="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="request" element="ns1:RLUSSearchStruct"/&gt;&lt;/message&gt;&lt;message name="getResponse"&gt;&lt;part name="response" element="tns:GetResponse"/&gt;&lt;/message&gt;&lt;message name="put"&gt;&lt;part name="request" element="tns:PutRequest"/&gt;&lt;/message&gt;&lt;message name="putResponse"&gt;&lt;part xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns2:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="initialize"&gt;&lt;part name="request" element="tns:InitializeRequest"/&gt;&lt;/message&gt;&lt;message name="initializeResponse"&gt;&lt;part xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns3:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="list"&gt;&lt;part name="request" element="tns:ListRequest"/&gt;&lt;/message&gt;&lt;message name="listResponse"&gt;&lt;part name="response" element="tns:ListResponse"/&gt;&lt;/message&gt;&lt;message name="locate"&gt;&lt;part name="request" element="tns:LocateRequest"/&gt;&lt;/message&gt;&lt;message name="locateResponse"&gt;&lt;part name="response" element="tns:LocateResponse"/&gt;&lt;/message&gt;&lt;message name="discard"&gt;&lt;part name="request" element="tns:DiscardRequest"/&gt;&lt;/message&gt;&lt;message name="discardResponse"&gt;&lt;part xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns4:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="describe"&gt;&lt;part name="request" element="tns:semantic-signifierName"/&gt;&lt;/message&gt;&lt;message name="describeResponse"&gt;&lt;part name="response" element="tns:DescribeResponse"/&gt;&lt;/message&gt;&lt;portType name="CDA2PortType"&gt;&lt;operation name="get"&gt;&lt;input wsam:Action="urn:get" message="tns:get"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:getResponse" message="tns:getResponse"/&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;input wsam:Action="urn:put" message="tns:put"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:putResponse" message="tns:putResponse"/&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;input wsam:Action="urn:initialize" message="tns:initialize"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:initializeResponse" message="tns:initializeResponse"/&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;input wsam:Action="urn:list" message="tns:list"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:listResponse" message="tns:listResponse"/&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;input wsam:Action="urn:locate" message="tns:locate"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:locateResponse" message="tns:locateResponse"/&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;input wsam:Action="urn:discard" message="tns:discard"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:discardResponse" message="tns:discardResponse"/&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;input wsam:Action="urn:describe" message="tns:describe"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:describeResponse" message="tns:describeResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="CDA2ReportServicePortBinding" type="tns:CDA2PortType"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="get"&gt;&lt;soap:operation soapAction="urn:get"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;soap:operation soapAction="urn:put"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;soap:operation soapAction="urn:initialize"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;soap:operation soapAction="urn:list"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;soap:operation soapAction="urn:locate"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;soap:operation soapAction="urn:discard"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;soap:operation soapAction="urn:describe"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="CDA2ReportService"&gt;&lt;port name="CDA2ReportServicePort" binding="tns:CDA2ReportServicePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:54 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:54 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:54 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:54 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:54 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:56 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:56 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:57 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:57 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:57 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:57 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:58 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:58 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:58 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:58 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:59 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:59 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:02 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:02 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:02 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:02 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:03 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:03 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:03 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:03 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:03 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:04 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:04 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:04 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:06 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:06 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:06 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:06 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:06 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange>
-
-
-<httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></httpExchange></session>
+<session xmlns="http://autoquest.informatik.uni-goettingen.de/httpsession" xmlns:session="http://autoquest.informatik.uni-goettingen.de/httpsession">
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="7584"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.omg.org/spec/IXS/201212" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://www.omg.org/spec/IXS/201212" name="POCDPatientMQService"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/IXS/201212" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="getEntityTraitValues"&gt;&lt;part name="parameters" element="tns:getEntityTraitValues"/&gt;&lt;/message&gt;&lt;message name="getEntityTraitValuesResponse"&gt;&lt;part name="parameters" element="tns:getEntityTraitValuesResponse"/&gt;&lt;/message&gt;&lt;message name="findIdentitiesByTraits"&gt;&lt;part name="parameters" element="tns:findIdentitiesByTraits"/&gt;&lt;/message&gt;&lt;message name="findIdentitiesByTraitsResponse"&gt;&lt;part name="parameters" element="tns:findIdentitiesByTraitsResponse"/&gt;&lt;/message&gt;&lt;message name="createIdentityFromEntity"&gt;&lt;part name="parameters" element="tns:createIdentityFromEntity"/&gt;&lt;/message&gt;&lt;message name="createIdentityFromEntityResponse"&gt;&lt;part name="parameters" element="tns:createIdentityFromEntityResponse"/&gt;&lt;/message&gt;&lt;message name="updateEntityTraitValues"&gt;&lt;part name="parameters" element="tns:updateEntityTraitValues"/&gt;&lt;/message&gt;&lt;message name="updateEntityTraitValuesResponse"&gt;&lt;part name="parameters" element="tns:updateEntityTraitValuesResponse"/&gt;&lt;/message&gt;&lt;message name="registerEntityWithIdentity"&gt;&lt;part name="parameters" element="tns:registerEntityWithIdentity"/&gt;&lt;/message&gt;&lt;message name="registerEntityWithIdentityResponse"&gt;&lt;part name="parameters" element="tns:registerEntityWithIdentityResponse"/&gt;&lt;/message&gt;&lt;message name="removeIdentity"&gt;&lt;part name="parameters" element="tns:removeIdentity"/&gt;&lt;/message&gt;&lt;message name="removeIdentityResponse"&gt;&lt;part name="parameters" element="tns:removeIdentityResponse"/&gt;&lt;/message&gt;&lt;message name="listLinkedIdentities"&gt;&lt;part name="parameters" element="tns:listLinkedIdentities"/&gt;&lt;/message&gt;&lt;message name="listLinkedIdentitiesResponse"&gt;&lt;part name="parameters" element="tns:listLinkedIdentitiesResponse"/&gt;&lt;/message&gt;&lt;message name="listUnlinkedIdentities"&gt;&lt;part name="parameters" element="tns:listUnlinkedIdentities"/&gt;&lt;/message&gt;&lt;message name="listUnlinkedIdentitiesResponse"&gt;&lt;part name="parameters" element="tns:listUnlinkedIdentitiesResponse"/&gt;&lt;/message&gt;&lt;portType name="IXSMgmtAndQueryInterface"&gt;&lt;operation name="getEntityTraitValues"&gt;&lt;input wsam:Action="urn:getEntityTraitValues" message="tns:getEntityTraitValues"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/getEntityTraitValuesResponse" message="tns:getEntityTraitValuesResponse"/&gt;&lt;/operation&gt;&lt;operation name="findIdentitiesByTraits"&gt;&lt;input wsam:Action="urn:findIdentitiesByTraits" message="tns:findIdentitiesByTraits"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/findIdentitiesByTraitsResponse" message="tns:findIdentitiesByTraitsResponse"/&gt;&lt;/operation&gt;&lt;operation name="createIdentityFromEntity"&gt;&lt;input wsam:Action="urn:createIdentityFromEntity" message="tns:createIdentityFromEntity"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/createIdentityFromEntityResponse" message="tns:createIdentityFromEntityResponse"/&gt;&lt;/operation&gt;&lt;operation name="updateEntityTraitValues"&gt;&lt;input wsam:Action="urn:updateEntityTraitValues" message="tns:updateEntityTraitValues"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/updateEntityTraitValuesResponse" message="tns:updateEntityTraitValuesResponse"/&gt;&lt;/operation&gt;&lt;operation name="registerEntityWithIdentity"&gt;&lt;input wsam:Action="urn:registerEntityWithIdentity" message="tns:registerEntityWithIdentity"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/registerEntityWithIdentityResponse" message="tns:registerEntityWithIdentityResponse"/&gt;&lt;/operation&gt;&lt;operation name="removeIdentity"&gt;&lt;input wsam:Action="urn:removeIdentity" message="tns:removeIdentity"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/removeIdentityResponse" message="tns:removeIdentityResponse"/&gt;&lt;/operation&gt;&lt;operation name="listLinkedIdentities"&gt;&lt;input wsam:Action="urn:listLinkedIdentities" message="tns:listLinkedIdentities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/listLinkedIdentitiesResponse" message="tns:listLinkedIdentitiesResponse"/&gt;&lt;/operation&gt;&lt;operation name="listUnlinkedIdentities"&gt;&lt;input wsam:Action="urn:listUnlinkedIdentities" message="tns:listUnlinkedIdentities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSMgmtAndQueryInterface/listUnlinkedIdentitiesResponse" message="tns:listUnlinkedIdentitiesResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="POCDPatientMQServicePortBinding" type="tns:IXSMgmtAndQueryInterface"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="getEntityTraitValues"&gt;&lt;soap:operation soapAction="urn:getEntityTraitValues"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="findIdentitiesByTraits"&gt;&lt;soap:operation soapAction="urn:findIdentitiesByTraits"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="createIdentityFromEntity"&gt;&lt;soap:operation soapAction="urn:createIdentityFromEntity"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="updateEntityTraitValues"&gt;&lt;soap:operation soapAction="urn:updateEntityTraitValues"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="registerEntityWithIdentity"&gt;&lt;soap:operation soapAction="urn:registerEntityWithIdentity"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="removeIdentity"&gt;&lt;soap:operation soapAction="urn:removeIdentity"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="listLinkedIdentities"&gt;&lt;soap:operation soapAction="urn:listLinkedIdentities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="listUnlinkedIdentities"&gt;&lt;soap:operation soapAction="urn:listUnlinkedIdentities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="POCDPatientMQService"&gt;&lt;port name="POCDPatientMQServicePort" binding="tns:POCDPatientMQServicePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="4187"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.omg.org/spec/IXS/201212" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://www.omg.org/spec/IXS/201212" name="IXS"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/IXS/201212" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="linkEntities"&gt;&lt;part name="parameters" element="tns:linkEntities"/&gt;&lt;/message&gt;&lt;message name="linkEntitiesResponse"&gt;&lt;part name="parameters" element="tns:linkEntitiesResponse"/&gt;&lt;/message&gt;&lt;message name="unlinkEntities"&gt;&lt;part name="parameters" element="tns:unlinkEntities"/&gt;&lt;/message&gt;&lt;message name="unlinkEntitiesResponse"&gt;&lt;part name="parameters" element="tns:unlinkEntitiesResponse"/&gt;&lt;/message&gt;&lt;message name="mergeEntities"&gt;&lt;part name="parameters" element="tns:mergeEntities"/&gt;&lt;/message&gt;&lt;message name="mergeEntitiesResponse"&gt;&lt;part name="parameters" element="tns:mergeEntitiesResponse"/&gt;&lt;/message&gt;&lt;message name="unMergeEntities"&gt;&lt;part name="parameters" element="tns:unMergeEntities"/&gt;&lt;/message&gt;&lt;message name="unMergeEntitiesResponse"&gt;&lt;part name="parameters" element="tns:unMergeEntitiesResponse"/&gt;&lt;/message&gt;&lt;portType name="IXSAdminEditorInterface"&gt;&lt;operation name="linkEntities"&gt;&lt;input wsam:Action="urn:linkEntities" message="tns:linkEntities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSAdminEditorInterface/linkEntitiesResponse" message="tns:linkEntitiesResponse"/&gt;&lt;/operation&gt;&lt;operation name="unlinkEntities"&gt;&lt;input wsam:Action="urn:unlinkEntities" message="tns:unlinkEntities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSAdminEditorInterface/unlinkEntitiesResponse" message="tns:unlinkEntitiesResponse"/&gt;&lt;/operation&gt;&lt;operation name="mergeEntities"&gt;&lt;input wsam:Action="urn:mergeEntities" message="tns:mergeEntities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSAdminEditorInterface/mergeEntitiesResponse" message="tns:mergeEntitiesResponse"/&gt;&lt;/operation&gt;&lt;operation name="unMergeEntities"&gt;&lt;input wsam:Action="urn:unMergeEntities" message="tns:unMergeEntities"/&gt;&lt;output wsam:Action="http://www.omg.org/spec/IXS/201212/IXSAdminEditorInterface/unMergeEntitiesResponse" message="tns:unMergeEntitiesResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="IXSAdminEditorInterfacePortBinding" type="tns:IXSAdminEditorInterface"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="linkEntities"&gt;&lt;soap:operation soapAction="urn:linkEntities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="unlinkEntities"&gt;&lt;soap:operation soapAction="urn:unlinkEntities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="mergeEntities"&gt;&lt;soap:operation soapAction="urn:mergeEntities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="unMergeEntities"&gt;&lt;soap:operation soapAction="urn:unMergeEntities"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="IXS"&gt;&lt;port name="IXSAdminEditorInterfacePort" binding="tns:IXSAdminEditorInterfacePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6217"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:dedalus:rlus:notes" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:dedalus:rlus:notes" name="RLPNotesService"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:dedalus:rlus:notes" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:dedalus:rlp" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService?xsd=3"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUStypes" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService?xsd=4"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUSexpression" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService?xsd=5"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="get"&gt;&lt;part xmlns:ns1="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="request" element="ns1:RLUSSearchStruct"/&gt;&lt;/message&gt;&lt;message name="getResponse"&gt;&lt;part name="response" element="tns:GetResponse"/&gt;&lt;/message&gt;&lt;message name="put"&gt;&lt;part name="request" element="tns:PutRequest"/&gt;&lt;/message&gt;&lt;message name="putResponse"&gt;&lt;part xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns2:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="initialize"&gt;&lt;part name="request" element="tns:InitializeRequest"/&gt;&lt;/message&gt;&lt;message name="initializeResponse"&gt;&lt;part xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns3:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="list"&gt;&lt;part name="request" element="tns:ListRequest"/&gt;&lt;/message&gt;&lt;message name="listResponse"&gt;&lt;part name="response" element="tns:ListResponse"/&gt;&lt;/message&gt;&lt;message name="locate"&gt;&lt;part name="request" element="tns:LocateRequest"/&gt;&lt;/message&gt;&lt;message name="locateResponse"&gt;&lt;part name="response" element="tns:LocateResponse"/&gt;&lt;/message&gt;&lt;message name="discard"&gt;&lt;part name="request" element="tns:DiscardRequest"/&gt;&lt;/message&gt;&lt;message name="discardResponse"&gt;&lt;part xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns4:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="describe"&gt;&lt;part name="request" element="tns:semantic-signifierName"/&gt;&lt;/message&gt;&lt;message name="describeResponse"&gt;&lt;part name="response" element="tns:DescribeResponse"/&gt;&lt;/message&gt;&lt;portType name="RLUSNotesPortType"&gt;&lt;operation name="get"&gt;&lt;input wsam:Action="urn:get" message="tns:get"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:getResponse" message="tns:getResponse"/&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;input wsam:Action="urn:put" message="tns:put"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:putResponse" message="tns:putResponse"/&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;input wsam:Action="urn:initialize" message="tns:initialize"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:initializeResponse" message="tns:initializeResponse"/&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;input wsam:Action="urn:list" message="tns:list"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:listResponse" message="tns:listResponse"/&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;input wsam:Action="urn:locate" message="tns:locate"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:locateResponse" message="tns:locateResponse"/&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;input wsam:Action="urn:discard" message="tns:discard"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:discardResponse" message="tns:discardResponse"/&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;input wsam:Action="urn:describe" message="tns:describe"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:notes:RLUSNotesPortType:describeResponse" message="tns:describeResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="RLPNotesServicePortBinding" type="tns:RLUSNotesPortType"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="get"&gt;&lt;soap:operation soapAction="urn:get"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;soap:operation soapAction="urn:put"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;soap:operation soapAction="urn:initialize"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;soap:operation soapAction="urn:list"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;soap:operation soapAction="urn:locate"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;soap:operation soapAction="urn:discard"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;soap:operation soapAction="urn:describe"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="RLPNotesService"&gt;&lt;port name="RLPNotesServicePort" binding="tns:RLPNotesServicePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:46 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6328"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:dedalus:rlus:xthm" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:dedalus:rlus:xthm" name="XTHMService"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:ihe:iti:2011:xdw" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:dedalus:rlus:xthm" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=3"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUStypes" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=4"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUSexpression" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=5"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService?xsd=6"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="get"&gt;&lt;part xmlns:ns1="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="request" element="ns1:RLUSSearchStruct"/&gt;&lt;/message&gt;&lt;message name="getResponse"&gt;&lt;part name="response" element="tns:GetResponse"/&gt;&lt;/message&gt;&lt;message name="put"&gt;&lt;part name="request" element="tns:PutRequest"/&gt;&lt;/message&gt;&lt;message name="putResponse"&gt;&lt;part xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns2:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="initialize"&gt;&lt;part name="request" element="tns:InitializeRequest"/&gt;&lt;/message&gt;&lt;message name="initializeResponse"&gt;&lt;part xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns3:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="list"&gt;&lt;part name="request" element="tns:ListRequest"/&gt;&lt;/message&gt;&lt;message name="listResponse"&gt;&lt;part name="response" element="tns:ListResponse"/&gt;&lt;/message&gt;&lt;message name="locate"&gt;&lt;part name="request" element="tns:LocateRequest"/&gt;&lt;/message&gt;&lt;message name="locateResponse"&gt;&lt;part name="response" element="tns:LocateResponse"/&gt;&lt;/message&gt;&lt;message name="discard"&gt;&lt;part name="request" element="tns:DiscardRequest"/&gt;&lt;/message&gt;&lt;message name="discardResponse"&gt;&lt;part xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns4:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="describe"&gt;&lt;part name="request" element="tns:semantic-signifierName"/&gt;&lt;/message&gt;&lt;message name="describeResponse"&gt;&lt;part name="response" element="tns:DescribeResponse"/&gt;&lt;/message&gt;&lt;portType name="XTHMPortType"&gt;&lt;operation name="get"&gt;&lt;input wsam:Action="urn:get" message="tns:get"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:getResponse" message="tns:getResponse"/&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;input wsam:Action="urn:put" message="tns:put"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:putResponse" message="tns:putResponse"/&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;input wsam:Action="urn:initialize" message="tns:initialize"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:initializeResponse" message="tns:initializeResponse"/&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;input wsam:Action="urn:list" message="tns:list"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:listResponse" message="tns:listResponse"/&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;input wsam:Action="urn:locate" message="tns:locate"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:locateResponse" message="tns:locateResponse"/&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;input wsam:Action="urn:discard" message="tns:discard"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:discardResponse" message="tns:discardResponse"/&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;input wsam:Action="urn:describe" message="tns:describe"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xthm:XTHMPortType:describeResponse" message="tns:describeResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="XTHMServicePortBinding" type="tns:XTHMPortType"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="get"&gt;&lt;soap:operation soapAction="urn:get"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;soap:operation soapAction="urn:put"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;soap:operation soapAction="urn:initialize"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;soap:operation soapAction="urn:list"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;soap:operation soapAction="urn:locate"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;soap:operation soapAction="urn:discard"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;soap:operation soapAction="urn:describe"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="XTHMService"&gt;&lt;port name="XTHMServicePort" binding="tns:XTHMServicePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6297"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:dedalus:rlus:xdw" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:dedalus:rlus:xdw" name="XDWService"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:ihe:iti:2011:xdw" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:dedalus:rlus:xdw" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=3"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUStypes" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=4"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUSexpression" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=5"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService?xsd=6"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="get"&gt;&lt;part xmlns:ns1="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="request" element="ns1:RLUSSearchStruct"/&gt;&lt;/message&gt;&lt;message name="getResponse"&gt;&lt;part name="response" element="tns:GetResponse"/&gt;&lt;/message&gt;&lt;message name="put"&gt;&lt;part name="request" element="tns:PutRequest"/&gt;&lt;/message&gt;&lt;message name="putResponse"&gt;&lt;part xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns2:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="initialize"&gt;&lt;part name="request" element="tns:InitializeRequest"/&gt;&lt;/message&gt;&lt;message name="initializeResponse"&gt;&lt;part xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns3:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="list"&gt;&lt;part name="request" element="tns:ListRequest"/&gt;&lt;/message&gt;&lt;message name="listResponse"&gt;&lt;part name="response" element="tns:ListResponse"/&gt;&lt;/message&gt;&lt;message name="locate"&gt;&lt;part name="request" element="tns:LocateRequest"/&gt;&lt;/message&gt;&lt;message name="locateResponse"&gt;&lt;part name="response" element="tns:LocateResponse"/&gt;&lt;/message&gt;&lt;message name="discard"&gt;&lt;part name="request" element="tns:DiscardRequest"/&gt;&lt;/message&gt;&lt;message name="discardResponse"&gt;&lt;part xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns4:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="describe"&gt;&lt;part name="request" element="tns:semantic-signifierName"/&gt;&lt;/message&gt;&lt;message name="describeResponse"&gt;&lt;part name="response" element="tns:DescribeResponse"/&gt;&lt;/message&gt;&lt;portType name="XDWPortType"&gt;&lt;operation name="get"&gt;&lt;input wsam:Action="urn:get" message="tns:get"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:getResponse" message="tns:getResponse"/&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;input wsam:Action="urn:put" message="tns:put"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:putResponse" message="tns:putResponse"/&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;input wsam:Action="urn:initialize" message="tns:initialize"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:initializeResponse" message="tns:initializeResponse"/&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;input wsam:Action="urn:list" message="tns:list"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:listResponse" message="tns:listResponse"/&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;input wsam:Action="urn:locate" message="tns:locate"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:locateResponse" message="tns:locateResponse"/&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;input wsam:Action="urn:discard" message="tns:discard"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:discardResponse" message="tns:discardResponse"/&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;input wsam:Action="urn:describe" message="tns:describe"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:xdw:XDWPortType:describeResponse" message="tns:describeResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="XDWServicePortBinding" type="tns:XDWPortType"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="get"&gt;&lt;soap:operation soapAction="urn:get"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;soap:operation soapAction="urn:put"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;soap:operation soapAction="urn:initialize"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;soap:operation soapAction="urn:list"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;soap:operation soapAction="urn:locate"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;soap:operation soapAction="urn:discard"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;soap:operation soapAction="urn:describe"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="XDWService"&gt;&lt;port name="XDWServicePort" binding="tns:XDWServicePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="GET" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService" query="wsdl"><headers><header key="User-Agent" value="Java/1.7.0_51"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"/></headers></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="6085"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.8 svn-revision#13980. --&gt;&lt;definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:dedalus:rlus:cda2report" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:dedalus:rlus:cda2report" name="CDA2ReportService"&gt;&lt;types&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:hl7-org:v3" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService?xsd=1"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="urn:dedalus:rlus:cda2report" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService?xsd=2"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUStypes" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService?xsd=3"/&gt;&lt;/xsd:schema&gt;&lt;xsd:schema&gt;&lt;xsd:import namespace="http://www.omg.org/spec/RLUS/201212/RLUSexpression" schemaLocation="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService?xsd=4"/&gt;&lt;/xsd:schema&gt;&lt;/types&gt;&lt;message name="get"&gt;&lt;part xmlns:ns1="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="request" element="ns1:RLUSSearchStruct"/&gt;&lt;/message&gt;&lt;message name="getResponse"&gt;&lt;part name="response" element="tns:GetResponse"/&gt;&lt;/message&gt;&lt;message name="put"&gt;&lt;part name="request" element="tns:PutRequest"/&gt;&lt;/message&gt;&lt;message name="putResponse"&gt;&lt;part xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns2:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="initialize"&gt;&lt;part name="request" element="tns:InitializeRequest"/&gt;&lt;/message&gt;&lt;message name="initializeResponse"&gt;&lt;part xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns3:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="list"&gt;&lt;part name="request" element="tns:ListRequest"/&gt;&lt;/message&gt;&lt;message name="listResponse"&gt;&lt;part name="response" element="tns:ListResponse"/&gt;&lt;/message&gt;&lt;message name="locate"&gt;&lt;part name="request" element="tns:LocateRequest"/&gt;&lt;/message&gt;&lt;message name="locateResponse"&gt;&lt;part name="response" element="tns:LocateResponse"/&gt;&lt;/message&gt;&lt;message name="discard"&gt;&lt;part name="request" element="tns:DiscardRequest"/&gt;&lt;/message&gt;&lt;message name="discardResponse"&gt;&lt;part xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUStypes" name="response" element="ns4:RLUSStatusCode"/&gt;&lt;/message&gt;&lt;message name="describe"&gt;&lt;part name="request" element="tns:semantic-signifierName"/&gt;&lt;/message&gt;&lt;message name="describeResponse"&gt;&lt;part name="response" element="tns:DescribeResponse"/&gt;&lt;/message&gt;&lt;portType name="CDA2PortType"&gt;&lt;operation name="get"&gt;&lt;input wsam:Action="urn:get" message="tns:get"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:getResponse" message="tns:getResponse"/&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;input wsam:Action="urn:put" message="tns:put"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:putResponse" message="tns:putResponse"/&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;input wsam:Action="urn:initialize" message="tns:initialize"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:initializeResponse" message="tns:initializeResponse"/&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;input wsam:Action="urn:list" message="tns:list"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:listResponse" message="tns:listResponse"/&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;input wsam:Action="urn:locate" message="tns:locate"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:locateResponse" message="tns:locateResponse"/&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;input wsam:Action="urn:discard" message="tns:discard"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:discardResponse" message="tns:discardResponse"/&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;input wsam:Action="urn:describe" message="tns:describe"/&gt;&lt;output wsam:Action="urn:dedalus:rlus:cda2report:CDA2PortType:describeResponse" message="tns:describeResponse"/&gt;&lt;/operation&gt;&lt;/portType&gt;&lt;binding name="CDA2ReportServicePortBinding" type="tns:CDA2PortType"&gt;&lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/&gt;&lt;operation name="get"&gt;&lt;soap:operation soapAction="urn:get"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="put"&gt;&lt;soap:operation soapAction="urn:put"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="initialize"&gt;&lt;soap:operation soapAction="urn:initialize"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="list"&gt;&lt;soap:operation soapAction="urn:list"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="locate"&gt;&lt;soap:operation soapAction="urn:locate"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="discard"&gt;&lt;soap:operation soapAction="urn:discard"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;operation name="describe"&gt;&lt;soap:operation soapAction="urn:describe"/&gt;&lt;input&gt;&lt;soap:body use="literal"/&gt;&lt;/input&gt;&lt;output&gt;&lt;soap:body use="literal"/&gt;&lt;/output&gt;&lt;/operation&gt;&lt;/binding&gt;&lt;service name="CDA2ReportService"&gt;&lt;port name="CDA2ReportServicePort" binding="tns:CDA2ReportServicePortBinding"&gt;&lt;soap:address location="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/CDA2ReportService"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:54 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:54 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:54 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:54 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:54 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:56 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:56 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:57 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:57 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:57 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:57 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:58 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:58 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:58 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:58 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:59 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:04:59 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:00 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:02 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:02 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:02 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:02 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:03 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:03 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:03 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:03 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:03 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:04 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:04 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:04 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:05 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:06 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:06 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:06 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:06 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:06 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:07 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:08 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:09 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:10 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:11 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:12 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:13 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:14 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:16 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:17 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:18 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:19 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:20 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:21 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:22 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:23 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:24 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:25 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:26 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:27 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:28 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:29 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:30 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:31 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:32 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:33 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:34 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:35 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:36 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:37 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:38 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:39 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:40 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:41 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:42 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:43 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:44 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:45 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:47 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:48 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:49 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:50 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="684"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="684"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="560"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="544"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="544"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="642"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns3:request version=""&gt;&lt;ns3:action&gt;&lt;/ns3:action&gt;&lt;ns3:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns3:payload&gt;&lt;/ns3:request&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:51 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="731"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="731"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:LocateRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="643"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:LocateResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="764"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="764"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="640"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:ListResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="463"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="463"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:semantic-signifierName xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;/ns2:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="936"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:DescribeResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSsemantic-signifier&gt;&lt;ns2:name&gt;&lt;/ns2:name&gt;&lt;ns2:signifierID&gt;&lt;/ns2:signifierID&gt;&lt;ns2:version&gt;&lt;/ns2:version&gt;&lt;ns2:schemaDefName&gt;&lt;/ns2:schemaDefName&gt;&lt;ns2:schemaDefintionReference&gt;&lt;/ns2:schemaDefintionReference&gt;&lt;ns2:renderingDefintionReference&gt;&lt;/ns2:renderingDefintionReference&gt;&lt;ns2:rulesetDefintionReference&gt;&lt;/ns2:rulesetDefintionReference&gt;&lt;/ns2:RLUSsemantic-signifier&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listUnlinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="324"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="324"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listUnlinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="319"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listUnlinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listUnlinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="768"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="768"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="644"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="852"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="852"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns2:request version=""&gt;&lt;ns2:action&gt;&lt;/ns2:action&gt;&lt;ns2:payload&gt;&lt;howmany&gt;234567890123&lt;/howmany&gt;&lt;continuation&gt;&lt;/continuation&gt;&lt;order&gt;&lt;/order&gt;&lt;/ns2:payload&gt;&lt;/ns2:request&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3526"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3526"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:PutRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;ns6:writeCommandEnum&gt;&lt;/ns6:writeCommandEnum&gt;&lt;/ns6:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="947"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="947"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="522"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:locate&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="688"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="688"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns6:maxResultStreams&gt;123456789012345&lt;/ns6:maxResultStreams&gt;&lt;ns6:previousResultID&gt;&lt;/ns6:previousResultID&gt;&lt;/ns6:LocateRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="564"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:LocateResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;ns6:resultID&gt;&lt;/ns6:resultID&gt;&lt;ns6:finishedFlag&gt;123456789012345&lt;/ns6:finishedFlag&gt;&lt;/ns6:LocateResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:linkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="405"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="405"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/linkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:52 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="299"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;linkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/linkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="858"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="858"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:DiscardRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;/ns2:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="521"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="624"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="624"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSSearchStruct xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm" semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3316"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:GetResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns3:XDW.WorkflowDocument&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns3:title&gt;&lt;ns3:effectiveTime value=""/&gt;&lt;ns3:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:confidentialityCode&gt;&lt;ns3:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:languageCode&gt;&lt;ns3:patient determinerCode=""&gt;&lt;ns3:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns3:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:administrativeGenderCode&gt;&lt;ns3:birthTime value=""/&gt;&lt;ns3:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns4:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;ns4:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns4:reference value=""/&gt;&lt;/ns4:thumbnail&gt;&lt;/ns4:originalText&gt;&lt;/ns3:maritalStatusCode&gt;&lt;/ns3:patient&gt;&lt;ns3:workflowInstanceID&gt;&lt;/ns3:workflowInstanceID&gt;&lt;ns3:workflowDocumentSequenceNumber&gt;12345&lt;/ns3:workflowDocumentSequenceNumber&gt;&lt;ns3:workflowStatus&gt;&lt;/ns3:workflowStatus&gt;&lt;ns3:workflowStatusHistory/&gt;&lt;ns3:TaskList/&gt;&lt;/ns3:XDW.WorkflowDocument&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="384"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="384"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="857"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/POCDPatientMQService"><headers><header key="SOAPAction" value="&quot;urn:listLinkedIdentities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="320"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="320"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;semanticSignifierName&gt;&lt;/semanticSignifierName&gt;&lt;entityId&gt;&lt;/entityId&gt;&lt;sourceId&gt;&lt;/sourceId&gt;&lt;/listLinkedIdentities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;listLinkedIdentitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/listLinkedIdentitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:list&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="727"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="727"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:ListRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;RLUSSearchStruct semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;ns2:maxResultStreams&gt;123456789012345&lt;/ns2:maxResultStreams&gt;&lt;ns2:previousResultID&gt;&lt;/ns2:previousResultID&gt;&lt;/ns2:ListRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="639"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:ListResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;ns3:resultID&gt;&lt;/ns3:resultID&gt;&lt;ns3:finishedFlag&gt;123456789012345&lt;/ns3:finishedFlag&gt;&lt;/ns3:ListResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:put&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="3473"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="3473"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:PutRequest xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns5:XDW.WorkflowDocument&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns5:title&gt;&lt;ns5:effectiveTime value=""/&gt;&lt;ns5:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:confidentialityCode&gt;&lt;ns5:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:languageCode&gt;&lt;ns5:patient determinerCode=""&gt;&lt;ns5:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns5:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:administrativeGenderCode&gt;&lt;ns5:birthTime value=""/&gt;&lt;ns5:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns3:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;ns3:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns3:reference value=""/&gt;&lt;/ns3:thumbnail&gt;&lt;/ns3:originalText&gt;&lt;/ns5:maritalStatusCode&gt;&lt;/ns5:patient&gt;&lt;ns5:workflowInstanceID&gt;&lt;/ns5:workflowInstanceID&gt;&lt;ns5:workflowDocumentSequenceNumber&gt;12345&lt;/ns5:workflowDocumentSequenceNumber&gt;&lt;ns5:workflowStatus&gt;&lt;/ns5:workflowStatus&gt;&lt;ns5:workflowStatusHistory/&gt;&lt;ns5:TaskList/&gt;&lt;/ns5:XDW.WorkflowDocument&gt;&lt;RLUSPutRequestSrcStruct&gt;&lt;RLUSsemantic-signifierName&gt;&lt;/RLUSsemantic-signifierName&gt;&lt;SecurityContext/&gt;&lt;CBRContext&gt;&lt;CBRName&gt;&lt;/CBRName&gt;&lt;NetworkName&gt;&lt;/NetworkName&gt;&lt;NetworkAddress&gt;&lt;/NetworkAddress&gt;&lt;/CBRContext&gt;&lt;/RLUSPutRequestSrcStruct&gt;&lt;ns2:writeCommandEnum&gt;&lt;/ns2:writeCommandEnum&gt;&lt;/ns2:PutRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="494"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns2:RLUSStatusCode xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:mergeEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="374"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="374"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/mergeEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="301"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;mergeEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/mergeEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XTHMService"><headers><header key="SOAPAction" value="&quot;urn:describe&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="464"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="464"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:semantic-signifierName xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;/ns6:semantic-signifierName&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="937"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DescribeResponse xmlns="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:ihe:iti:2011:xdw" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:xthm"&gt;&lt;ns5:RLUSsemantic-signifier&gt;&lt;ns5:name&gt;&lt;/ns5:name&gt;&lt;ns5:signifierID&gt;&lt;/ns5:signifierID&gt;&lt;ns5:version&gt;&lt;/ns5:version&gt;&lt;ns5:schemaDefName&gt;&lt;/ns5:schemaDefName&gt;&lt;ns5:schemaDefintionReference&gt;&lt;/ns5:schemaDefintionReference&gt;&lt;ns5:renderingDefintionReference&gt;&lt;/ns5:renderingDefintionReference&gt;&lt;ns5:rulesetDefintionReference&gt;&lt;/ns5:rulesetDefintionReference&gt;&lt;/ns5:RLUSsemantic-signifier&gt;&lt;ns5:RLUSStatusCode&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/ns6:DescribeResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/RLPNotesService"><headers><header key="SOAPAction" value="&quot;urn:discard&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="867"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="867"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns6:DiscardRequest xmlns:ns2="urn:dedalus:rlp" xmlns:ns3="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:RLUSSearchStruct semantic-signifiername=""&gt;&lt;ns5:searchByCriteria&gt;&lt;ns5:FilterCriteria&gt;&lt;ns5:Expression/&gt;&lt;/ns5:FilterCriteria&gt;&lt;ns5:OrderCriteria/&gt;&lt;ns5:SearchAttributes/&gt;&lt;/ns5:searchByCriteria&gt;&lt;/ns5:RLUSSearchStruct&gt;&lt;ns5:RLUSPutRequestSrcStruct&gt;&lt;ns5:RLUSsemantic-signifierName&gt;&lt;/ns5:RLUSsemantic-signifierName&gt;&lt;ns5:SecurityContext/&gt;&lt;ns5:CBRContext&gt;&lt;ns5:CBRName&gt;&lt;/ns5:CBRName&gt;&lt;ns5:NetworkName&gt;&lt;/ns5:NetworkName&gt;&lt;ns5:NetworkAddress&gt;&lt;/ns5:NetworkAddress&gt;&lt;/ns5:CBRContext&gt;&lt;/ns5:RLUSPutRequestSrcStruct&gt;&lt;/ns6:DiscardRequest&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="442"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns5:RLUSStatusCode xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns3="urn:dedalus:rlp" xmlns:ns4="urn:hl7-org:v3" xmlns:ns5="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns6="urn:dedalus:rlus:notes"&gt;&lt;ns5:success&gt;true&lt;/ns5:success&gt;&lt;ns5:message&gt;&lt;/ns5:message&gt;&lt;/ns5:RLUSStatusCode&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/XDWService"><headers><header key="SOAPAction" value="&quot;urn:get&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="587"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="587"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;RLUSSearchStruct xmlns="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns2="urn:dedalus:rlus:xdw" xmlns:ns3="urn:hl7-org:v3" xmlns:ns4="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns5="urn:ihe:iti:2011:xdw" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803" semantic-signifiername=""&gt;&lt;searchByCriteria&gt;&lt;FilterCriteria&gt;&lt;Expression/&gt;&lt;/FilterCriteria&gt;&lt;OrderCriteria/&gt;&lt;SearchAttributes/&gt;&lt;/searchByCriteria&gt;&lt;/RLUSSearchStruct&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="3315"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;ns3:GetResponse xmlns="http://www.omg.org/spec/RLUS/201212/RLUSexpression" xmlns:ns2="http://www.omg.org/spec/RLUS/201212/RLUStypes" xmlns:ns3="urn:dedalus:rlus:xdw" xmlns:ns4="urn:ihe:iti:2011:xdw" xmlns:ns5="urn:hl7-org:v3" xmlns:ns6="http://docs.oasis-open.org/ns/bpel4people/ws-humantask/types/200803"&gt;&lt;ns4:XDW.WorkflowDocument&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:title mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns4:title&gt;&lt;ns4:effectiveTime value=""/&gt;&lt;ns4:confidentialityCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:confidentialityCode&gt;&lt;ns4:languageCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:languageCode&gt;&lt;ns4:patient determinerCode=""&gt;&lt;ns4:id root="" extension="" assigningAuthorityName="" displayable="true"/&gt;&lt;ns4:administrativeGenderCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:administrativeGenderCode&gt;&lt;ns4:birthTime value=""/&gt;&lt;ns4:maritalStatusCode code="" codeSystem="" codeSystemName="" codeSystemVersion="" displayName=""&gt;&lt;ns5:originalText mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;ns5:thumbnail mediaType="" language="" compression="DF" integrityCheck="ewA=" integrityCheckAlgorithm="SHA-1" representation="B64"&gt;&lt;ns5:reference value=""/&gt;&lt;/ns5:thumbnail&gt;&lt;/ns5:originalText&gt;&lt;/ns4:maritalStatusCode&gt;&lt;/ns4:patient&gt;&lt;ns4:workflowInstanceID&gt;&lt;/ns4:workflowInstanceID&gt;&lt;ns4:workflowDocumentSequenceNumber&gt;12345&lt;/ns4:workflowDocumentSequenceNumber&gt;&lt;ns4:workflowStatus&gt;&lt;/ns4:workflowStatus&gt;&lt;ns4:workflowStatusHistory/&gt;&lt;ns4:TaskList/&gt;&lt;/ns4:XDW.WorkflowDocument&gt;&lt;ns2:RLUSStatusCode&gt;&lt;ns2:success&gt;true&lt;/ns2:success&gt;&lt;ns2:message&gt;&lt;/ns2:message&gt;&lt;/ns2:RLUSStatusCode&gt;&lt;/ns3:GetResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange>
+
+
+<session:httpExchange status="success" xmlns="http://autoquest.informatik.uni-goettingen.de/httpexchange"><sender><ip>127.0.0.1</ip><host>127.0.0.1</host><port>35697</port></sender><receiver><ip>127.0.0.1</ip><host>127.0.0.1</host><port>12345</port></receiver><request method="POST" protocol="HTTP/1.1" url="http://localhost:12345/hssp-dummy-0.0.1-SNAPSHOT/IXS"><headers><header key="SOAPAction" value="&quot;urn:unlinkEntities&quot;"/><header key="User-Agent" value="JAX-WS RI 2.2.4-b01"/><header key="Connection" value="keep-alive"/><header key="Host" value="localhost:12345"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Accept" value="text/xml, multipart/related"/><header key="Content-Length" value="409"/></headers><content encoding="UTF-8" type="text/xml; charset=UTF-8" length="409"><data>&lt;?xml version="1.0" ?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntities xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;entityTypeName&gt;&lt;/entityTypeName&gt;&lt;sourceEntityId&gt;&lt;/sourceEntityId&gt;&lt;sourceSourceId&gt;&lt;/sourceSourceId&gt;&lt;targetEntityId&gt;&lt;/targetEntityId&gt;&lt;targetSourceId&gt;&lt;/targetSourceId&gt;&lt;reasonCode&gt;&lt;/reasonCode&gt;&lt;/unlinkEntities&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></request><response status="200"><headers><header key="Date" value="Fri, 28 Feb 2014 08:05:53 GMT"/><header key="Content-Type" value="text/xml; charset=UTF-8"/><header key="Server" value="Apache-Coyote/1.1"/></headers><content encoding="UTF-8" type="text/xml;charset=UTF-8" length="303"><data>&lt;?xml version='1.0' encoding='UTF-8'?&gt;&lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;S:Body&gt;&lt;unlinkEntitiesResponse xmlns="http://www.omg.org/spec/IXS/201212" xmlns:ns2="urn:hl7-org:v3"&gt;&lt;return&gt;&lt;statusSuccess&gt;true&lt;/statusSuccess&gt;&lt;/return&gt;&lt;/unlinkEntitiesResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;</data></content></response></session:httpExchange></session>
